piwheels / packages

Issue tracker for piwheels package issues
https://github.com/piwheels/packages/issues
20 stars 5 forks source link

Missing package: PyQt5 #3

Open bgleonard opened 5 years ago

bgleonard commented 5 years ago

Package name: PyQt5 Issue type: Missing package Link to PyPI page: https://pypi.org/project/PyQt5 Link to piwheels page: https://www.piwheels.org/project/PyQt5 Version: all Python version: all

bennuttall commented 5 years ago

It's not possible to build pyqt5 as no source distribution is provided: there's nothing to build from. The maintainers (Riverbank) only provide wheels built for Windows, Mac and 64-bit Linux.

The recommended way to install pyqt on Raspberry Pi is with apt.

Feb 2020 Update: sdist now available

bgleonard commented 5 years ago

I’ve built it from source on the Pi.

Here is the riverbank software source download page: https://www.riverbankcomputing.com/software/pyqt/download5

On Aug 8, 2018, at 5:03 AM, Ben Nuttall notifications@github.com wrote:

It's not possible to build pyqt5 as no source distribution is provided: there's nothing to build from. The maintainers (Riverbank) only provide wheels built for Windows, Mac and 64-bit Linux.

The recommended way to install pyqt on Raspberry Pi is with apt.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.

bennuttall commented 5 years ago

Do you have instructions to build from source on a Pi?

bgleonard commented 5 years ago

Sure! Here is how I built and installed PyQt5 5.10.1 for Python 3.5 on a 3B+ running Stretch.

sudo apt-get install qt-5default qtdeclarative5-dev qtlocation5-dev libqt5* qttools5-dev qtmultimedia5-dev qt5help qt5multimedia qttranslations5 qt5-make qtbase5-dev <- updated the list of packages I believe are required to configure and build almost all pyqt modules wget https://sourceforge.net/projects/pyqt/files/sip/sip-4.19.12/sip-4.19.12.tar.gz wget https://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-5.10.1/PyQt5_gpl-5.10.1.tar.gz

tar -xvf sip-4.19.12.tar.gz tar -xvf PyQt5_gpl-5.10.1.tar.gz

cd sip-4.19.12 python3 configure.py --sip-module=PyQt5.sip make -j5 sudo make install cd ../PyQt5_gpl-5.10.1 python3 configure.py --qmake /usr/lib/arm-linux-gnueabihf/qt5/bin/qmake --sip-incdir /home/pi/sip-4.19.12/siplib make -j5 sudo make install

altendky commented 5 years ago

FYI, Phil is working towards a proper source package for PyPI..

https://www.riverbankcomputing.com/pipermail/pyqt/2018-August/040704.html

I am (slowly) moving towards being able to have source packages on PyPI - but that would require you to have Qt already installed.

bennuttall commented 4 years ago

Update: PyQt5 sdist is available for the last two releases on PyPI.

We just need to know what the build dependencies are, and we'll try and build the wheels.

@altendky are there any docs on this?

altendky commented 4 years ago

@bennuttall, I haven't gotten into that yet. I would expect it would want 'Qt'. I'm not sure what else. Is there somewhere I could go to see the build errors and to try to address them? If not I can just try to do it locally on my rpi and come back with a list of what I have to install.

bennuttall commented 4 years ago

I'll be able to get the logs. What's the minimum python version supported in the latest version?

altendky commented 4 years ago

Looks like 3.5-3.8. Are the builds not public? I don't know anything yet about how contributions are handled or CI etc.

altendky commented 4 years ago

Looks like these are the instructions. I'll look around. https://www.riverbankcomputing.com/static/Docs/PyQt5/installation.html#building-and-installing-from-source

altendky commented 4 years ago

This is on my main PC (not rpi) which has presumably had some various stuff installed. Just doing this as a first pass. I'll try to follow up on my rpi, then maybe a fresh install on it as well. And woops, I ran install rather than building a wheel... but, presumably similar requirements to address. This is taking awhile and so I'll share it as is in case you are digging in parallel. I'm going to reinstall my rpi and follow up there.

 ~/r/piwheels_pyqt5   master ●✚  venv/bin/pip install --no-binary pyqt5 pyqt5
Collecting pyqt5
  Using cached PyQt5-5.14.1.tar.gz (3.2 MB)
  Installing build dependencies ... done
  Getting requirements to build wheel ... done
    Preparing wheel metadata ... error
    ERROR: Command errored out with exit status 1:
     command: /home/altendky/repos/piwheels_pyqt5/venv/bin/python3 /home/altendky/repos/piwheels_pyqt5/venv/lib/python3.8/site-packages/pip/_vendor/pep517/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpssyu2h6y
         cwd: /tmp/pip-install-58up1ux1/pyqt5
    Complete output (37 lines):
    Querying qmake about your Qt installation...
    /usr/bin/qmake -query
    Traceback (most recent call last):
      File "/home/altendky/repos/piwheels_pyqt5/venv/lib/python3.8/site-packages/pip/_vendor/pep517/_in_process.py", line 103, in prepare_metadata_for_build_wheel
        hook = backend.prepare_metadata_for_build_wheel
    AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel'

    During handling of the above exception, another exception occurred:                                                                          

    Traceback (most recent call last):                                                                                                           
      File "/home/altendky/repos/piwheels_pyqt5/venv/lib/python3.8/site-packages/pip/_vendor/pep517/_in_process.py", line 257, in <module>       
        main()                                                                                                                                   
      File "/home/altendky/repos/piwheels_pyqt5/venv/lib/python3.8/site-packages/pip/_vendor/pep517/_in_process.py", line 240, in main           
        json_out['return_val'] = hook(**hook_input['kwargs'])                                                                                    
      File "/home/altendky/repos/piwheels_pyqt5/venv/lib/python3.8/site-packages/pip/_vendor/pep517/_in_process.py", line 107, in prepare_metadata_for_build_wheel                                                                                                                                
        return _get_wheel_metadata_from_wheel(backend, metadata_directory,                                                                       
      File "/home/altendky/repos/piwheels_pyqt5/venv/lib/python3.8/site-packages/pip/_vendor/pep517/_in_process.py", line 136, in _get_wheel_metadata_from_wheel                                                                                                                                  
        whl_basename = backend.build_wheel(metadata_directory, config_settings)                                                                  
      File "/tmp/pip-build-env-7f5uxwtr/overlay/lib/python3.8/site-packages/sipbuild/api.py", line 51, in build_wheel                            
        project = AbstractProject.bootstrap('pep517')                                                                                            
      File "/tmp/pip-build-env-7f5uxwtr/overlay/lib/python3.8/site-packages/sipbuild/abstract_project.py", line 82, in bootstrap                 
        project.setup(pyproject, tool, tool_description)                                                                                         
      File "/tmp/pip-build-env-7f5uxwtr/overlay/lib/python3.8/site-packages/sipbuild/project.py", line 387, in setup                             
        self.apply_user_defaults(tool)                                                                                                           
      File "project.py", line 62, in apply_user_defaults                                                                                         
        super().apply_user_defaults(tool)                                                                                                        
      File "/tmp/pip-build-env-7f5uxwtr/overlay/lib/python3.8/site-packages/pyqtbuild/project.py", line 86, in apply_user_defaults               
        super().apply_user_defaults(tool)                                                                                                        
      File "/tmp/pip-build-env-7f5uxwtr/overlay/lib/python3.8/site-packages/sipbuild/project.py", line 202, in apply_user_defaults               
        self.builder.apply_user_defaults(tool)                                                                                                   
      File "/tmp/pip-build-env-7f5uxwtr/overlay/lib/python3.8/site-packages/pyqtbuild/builder.py", line 76, in apply_user_defaults               
        self._get_qt_configuration()                                                                                                             
      File "/tmp/pip-build-env-7f5uxwtr/overlay/lib/python3.8/site-packages/pyqtbuild/builder.py", line 431, in _get_qt_configuration            
        for line in project.read_command_pipe([self.qmake, '-query']):                                                                           
      File "/tmp/pip-build-env-7f5uxwtr/overlay/lib/python3.8/site-packages/sipbuild/project.py", line 350, in read_command_pipe                 
        raise UserException("'{0}' failed returning {1}".format(cmd, rc))                                                                        
    sipbuild.exceptions.UserException                                                                                                            
    ----------------------------------------                                                                                                     
ERROR: Command errored out with exit status 1: /home/altendky/repos/piwheels_pyqt5/venv/bin/python3 /home/altendky/repos/piwheels_pyqt5/venv/lib/python3.8/site-packages/pip/_vendor/pep517/_in_process.py prepare_metadata_for_build_wheel /tmp/tmpssyu2h6y Check the logs for full command output.

so

apt install qt5-default

then it at least starts running for a long time.

altendky commented 4 years ago

I suppose to capture the most dependencies I ought to be installing the Raspbian Buster Lite image?

bennuttall commented 4 years ago

Yes

bennuttall commented 4 years ago

Build log from cp37m here: https://bennuttall.com/files/pyqt.txt

bennuttall commented 4 years ago

Looks like 3.5-3.8. Are the builds not public? I don't know anything yet about how contributions are handled or CI etc.

Not currently. Builds are made on real Raspberry Pis in a Pi cloud service. The build logs get output into a database, and we can retrieve them from there when we need to.

altendky commented 4 years ago
 2020-01-06T00:47:53     Querying qmake about your Qt installation...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       +
 2020-01-06T00:47:53     /usr/bin/qmake -query                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
 2020-01-06T00:47:53     Traceback (most recent call last):                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 +
 2020-01-06T00:47:53       File "/usr/local/lib/python3.7/dist-packages/pip/_vendor/pep517/_in_process.py", line 64, in prepare_metadata_for_build_wheel                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +
 2020-01-06T00:47:53         hook = backend.prepare_metadata_for_build_wheel                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +
 2020-01-06T00:47:53     AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel'  

Looks like the same error as I had above. The build is expecting qmake to have a default Qt chosen. Apparently apt installing qt5-default is one option. If you want another I can dig on it. After that it did build for me. Admittedly on my desktop with who knows what else it needed already installed, but that's what I've got for now. I grabbed the latest raspbian to try and wasn't getting any hdmi output and I haven't resolved that yet.

I did also work a bit on updating pyqt5-tools to the new PyQt5 5.14+ build system last night so I'm getting some exposure there. If you build with sip-build yourself rather than using pip you get some more control. Though we may well not need that.

bennuttall commented 4 years ago

Great, thanks.

Can you do this process to see what dependencies it has? They're not strictly the same as build-deps but would at least shed some light.

altendky commented 4 years ago

When I get my rpi running... sure. :|

altendky commented 4 years ago

I haven't gotten back to fixing my rpi. I've been working through getting the build going for pyqt5-tools. Is there a new error to figure out?

altendky commented 4 years ago

Here is a preliminary procedure that while presumably quite wrong can hopefully be a useful step forward by providing some answers to the questions above and something to correct. I did not get my own Pi running but instead rented one from Mythic Beasts. While that leaves us without Raspbian Lite for the moment (rather regular Raspbian Buster), it does get us exactly the same environment as the real builds will occur in as far as I know.

ssh root@piwhl_pyqt.hostedpi.com ```bash altendky@p1:~$ ssh root@piwhl_pyqt.hostedpi.com The authenticity of host 'piwhl_pyqt.hostedpi.com (2a00:1098:8:9d::1)' can't be established. ECDSA key fingerprint is SHA256:27Tdc2rvTGrwhiHlFNEb/Vv0MR7TYsTk0SP2B6xgRjQ. Are you sure you want to continue connecting (yes/no/[fingerprint])? yes Warning: Permanently added 'piwhl_pyqt.hostedpi.com,2a00:1098:8:9d::1' (ECDSA) to the list of known hosts. Linux raspberrypi 4.19.50-v7+ #896 SMP Thu Jun 20 16:11:44 BST 2019 armv7l The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. Last login: Mon Jul 1 14:58:15 2019 from 92.40.248.176 ```
apt update --yes ```bash root@raspberrypi:~# apt update --yes Get:1 http://archive.raspberrypi.org/debian buster InRelease [25.1 kB] Get:2 http://archive.raspbian.org/raspbian buster InRelease [15.0 kB] Get:3 http://archive.raspberrypi.org/debian buster/main armhf Packages [280 kB] E: Repository 'http://archive.raspbian.org/raspbian buster InRelease' changed its 'Suite' value from 'testing' to 'stable' N: This must be accepted explicitly before updates for this repository can be applied. See apt-secure(8) manpage for details. Do you want to accept these changes and continue updating from this repository? [y/N] Y Get:4 http://archive.raspbian.org/raspbian buster/main armhf Packages [13.0 MB] Fetched 13.3 MB in 12s (1,107 kB/s) Reading package lists... Done Building dependency tree Reading state information... Done 82 packages can be upgraded. Run 'apt list --upgradable' to see them. ```
apt upgrade --yes ```bash root@raspberrypi:~# apt upgrade --yes Reading package lists... Done Building dependency tree Reading state information... Done Calculating upgrade... Done The following packages were automatically installed and are no longer required: gnupg-agent libncurses5 libperl5.24 rename tcpd Use 'apt autoremove' to remove them. The following packages will be upgraded: base-files bzip2 cron dirmngr e2fslibs e2fsprogs e2fsprogs-l10n exim4-base exim4-config exim4-daemon-light file gnupg gnupg-agent gnupg-l10n gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm gpgv guile-2.2-libs initramfs-tools initramfs-tools-core libboost-iostreams1.67.0 libboost-system1.67.0 libbz2-1.0 libcom-err2 libcomerr2 libcryptsetup12 libdrm-common libdrm2 libexpat1 libext2fs2 libfribidi0 libgnutls-dane0 libgnutls30 libidn2-0 libldap-2.4-2 libldap-common libmagic-mgc libmagic1 libmariadb3 libncurses5 libncurses6 libncursesw5 libncursesw6 libnss-systemd libpam-systemd libpython2.7 libpython2.7-minimal libpython2.7-stdlib libraspberrypi-bin libraspberrypi0 libsasl2-2 libsasl2-modules libsasl2-modules-db libss2 libssl1.1 libsystemd0 libtimedate-perl libtinfo5 libtinfo6 libudev1 libunbound8 libxmuu1 mariadb-common ncurses-base ncurses-bin ncurses-term openssh-client openssh-server openssh-sftp-server openssl raspberrypi-bootloader raspberrypi-kernel raspberrypi-kernel-headers systemd systemd-sysv tzdata udev 82 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Need to get 137 MB of archives. After this operation, 92.7 MB of additional disk space will be used. Get:1 http://archive.raspberrypi.org/debian buster/main armhf libssl1.1 armhf 1.1.1d-0+deb10u2+rpt1 [1,276 kB] Get:2 http://archive.raspbian.org/raspbian buster/main armhf base-files armhf 10.3+rpi1+deb10u3 [70.0 kB] Get:3 http://archive.raspberrypi.org/debian buster/main armhf libdrm-common all 2.4.100-4+rpi1~bpo10+1 [14.4 kB] Get:4 http://archive.raspberrypi.org/debian buster/main armhf libdrm2 armhf 2.4.100-4+rpi1~bpo10+1 [36.6 kB] Get:5 http://archive.raspberrypi.org/debian buster/main armhf raspberrypi-kernel armhf 1.20200212-1 [71.4 MB] Get:6 http://archive.raspbian.org/raspbian buster/main armhf ncurses-bin armhf 6.1+20181013-2+deb10u2 [400 kB] Get:7 http://archive.raspbian.org/raspbian buster/main armhf ncurses-base all 6.1+20181013-2+deb10u2 [258 kB] Get:8 http://archive.raspbian.org/raspbian buster/main armhf libnss-systemd armhf 241-7~deb10u3+rpi1 [190 kB] Get:9 http://archive.raspbian.org/raspbian buster/main armhf libsystemd0 armhf 241-7~deb10u3+rpi1 [305 kB] Get:10 http://archive.raspbian.org/raspbian buster/main armhf libpam-systemd armhf 241-7~deb10u3+rpi1 [193 kB] Get:11 http://archive.raspbian.org/raspbian buster/main armhf systemd armhf 241-7~deb10u3+rpi1 [3,251 kB] Get:12 http://archive.raspbian.org/raspbian buster/main armhf udev armhf 241-7~deb10u3+rpi1 [1,252 kB] Get:13 http://archive.raspbian.org/raspbian buster/main armhf libudev1 armhf 241-7~deb10u3+rpi1 [143 kB] Get:14 http://archive.raspbian.org/raspbian buster/main armhf systemd-sysv armhf 241-7~deb10u3+rpi1 [99.9 kB] Get:15 http://archive.raspbian.org/raspbian buster/main armhf libcryptsetup12 armhf 2:2.1.0-5+deb10u2 [171 kB] Get:16 http://archive.raspbian.org/raspbian buster/main armhf libunbound8 armhf 1.9.0-2+deb10u1 [402 kB] Get:17 http://archive.raspbian.org/raspbian buster/main armhf libgnutls-dane0 armhf 3.6.7-4+deb10u3 [314 kB] Get:18 http://archive.raspbian.org/raspbian buster/main armhf libidn2-0 armhf 2.0.5-1+deb10u1 [74.0 kB] Get:19 http://archive.raspbian.org/raspbian buster/main armhf libgnutls30 armhf 3.6.7-4+deb10u3 [1,047 kB] Get:20 http://archive.raspbian.org/raspbian buster/main armhf e2fsprogs-l10n all 1.44.5-1+deb10u3 [504 kB] Get:21 http://archive.raspbian.org/raspbian buster/main armhf initramfs-tools-core all 0.133+deb10u1 [99.2 kB] Get:22 http://archive.raspbian.org/raspbian buster/main armhf initramfs-tools all 0.133+deb10u1 [69.7 kB] Get:23 http://archive.raspbian.org/raspbian buster/main armhf libext2fs2 armhf 1.44.5-1+deb10u3 [202 kB] Get:24 http://archive.raspbian.org/raspbian buster/main armhf e2fsprogs armhf 1.44.5-1+deb10u3 [532 kB] Get:25 http://archive.raspbian.org/raspbian buster/main armhf cron armhf 3.0pl1-134+deb10u1 [94.0 kB] Get:26 http://archive.raspbian.org/raspbian buster/main armhf bzip2 armhf 1.0.6-9.2~deb10u1 [46.2 kB] Get:27 http://archive.raspbian.org/raspbian buster/main armhf libbz2-1.0 armhf 1.0.6-9.2~deb10u1 [43.1 kB] Get:28 http://archive.raspbian.org/raspbian buster/main armhf gpgv armhf 2.2.12-1+rpi1+deb10u1 [541 kB] Get:29 http://archive.raspbian.org/raspbian buster/main armhf libsasl2-modules-db armhf 2.1.27+dfsg-1+deb10u1 [67.5 kB] Get:30 http://archive.raspbian.org/raspbian buster/main armhf libsasl2-2 armhf 2.1.27+dfsg-1+deb10u1 [98.8 kB] Get:31 http://archive.raspbian.org/raspbian buster/main armhf gnupg-utils armhf 2.2.12-1+rpi1+deb10u1 [753 kB] Get:32 http://archive.raspbian.org/raspbian buster/main armhf gpgconf armhf 2.2.12-1+rpi1+deb10u1 [487 kB] Get:33 http://archive.raspbian.org/raspbian buster/main armhf gpg-agent armhf 2.2.12-1+rpi1+deb10u1 [566 kB] Get:34 http://archive.raspbian.org/raspbian buster/main armhf gpg armhf 2.2.12-1+rpi1+deb10u1 [769 kB] Get:35 http://archive.raspbian.org/raspbian buster/main armhf gpg-wks-server armhf 2.2.12-1+rpi1+deb10u1 [459 kB] Get:36 http://archive.raspbian.org/raspbian buster/main armhf dirmngr armhf 2.2.12-1+rpi1+deb10u1 [655 kB] Get:37 http://archive.raspbian.org/raspbian buster/main armhf gpg-wks-client armhf 2.2.12-1+rpi1+deb10u1 [464 kB] Get:38 http://archive.raspbian.org/raspbian buster/main armhf gnupg-l10n all 2.2.12-1+rpi1+deb10u1 [1,010 kB] Get:39 http://archive.raspbian.org/raspbian buster/main armhf gpgsm armhf 2.2.12-1+rpi1+deb10u1 [559 kB] Get:40 http://archive.raspbian.org/raspbian buster/main armhf gnupg all 2.2.12-1+rpi1+deb10u1 [715 kB] Get:41 http://archive.raspberrypi.org/debian buster/main armhf libraspberrypi-bin armhf 1.20200212-1 [339 kB] Get:42 http://archive.raspberrypi.org/debian buster/main armhf libraspberrypi0 armhf 1.20200212-1 [848 kB] Get:43 http://archive.raspbian.org/raspbian buster/main armhf libldap-common all 2.4.47+dfsg-3+rpi1+deb10u1 [89.8 kB] Get:44 http://archive.raspbian.org/raspbian buster/main armhf libldap-2.4-2 armhf 2.4.47+dfsg-3+rpi1+deb10u1 [198 kB] Get:45 http://archive.raspbian.org/raspbian buster/main armhf libncurses6 armhf 6.1+20181013-2+deb10u2 [78.9 kB] Get:46 http://archive.raspberrypi.org/debian buster/main armhf raspberrypi-bootloader armhf 1.20200212-1 [5,581 kB] Get:47 http://archive.raspbian.org/raspbian buster/main armhf libtinfo6 armhf 6.1+20181013-2+deb10u2 [312 kB] Get:48 http://archive.raspbian.org/raspbian buster/main armhf libncursesw6 armhf 6.1+20181013-2+deb10u2 [103 kB] Get:49 http://archive.raspbian.org/raspbian buster/main armhf tzdata all 2019c-0+deb10u1 [261 kB] Get:50 http://archive.raspbian.org/raspbian buster/main armhf file armhf 1:5.35-4+deb10u1 [65.4 kB] Get:51 http://archive.raspbian.org/raspbian buster/main armhf libmagic1 armhf 1:5.35-4+deb10u1 [110 kB] Get:52 http://archive.raspbian.org/raspbian buster/main armhf libmagic-mgc armhf 1:5.35-4+deb10u1 [242 kB] Get:53 http://archive.raspbian.org/raspbian buster/main armhf ncurses-term all 6.1+20181013-2+deb10u2 [490 kB] Get:54 http://archive.raspberrypi.org/debian buster/main armhf openssl armhf 1.1.1d-0+deb10u2+rpt1 [807 kB] Get:55 http://archive.raspberrypi.org/debian buster/main armhf raspberrypi-kernel-headers armhf 1.20200212-1 [24.9 MB] Get:56 http://archive.raspbian.org/raspbian buster/main armhf openssh-sftp-server armhf 1:7.9p1-10+deb10u2 [35.9 kB] Get:57 http://archive.raspbian.org/raspbian buster/main armhf libcom-err2 armhf 1.44.5-1+deb10u3 [67.6 kB] Get:58 http://archive.raspbian.org/raspbian buster/main armhf openssh-server armhf 1:7.9p1-10+deb10u2 [291 kB] Get:59 http://archive.raspbian.org/raspbian buster/main armhf openssh-client armhf 1:7.9p1-10+deb10u2 [670 kB] Get:60 http://archive.raspbian.org/raspbian buster/main armhf e2fslibs armhf 1.44.5-1+deb10u3 [64.2 kB] Get:61 http://archive.raspbian.org/raspbian buster/main armhf exim4-config all 4.92-8+deb10u3 [323 kB] Get:62 http://archive.raspbian.org/raspbian buster/main armhf exim4-base armhf 4.92-8+deb10u3 [1,132 kB] Get:63 http://archive.raspbian.org/raspbian buster/main armhf exim4-daemon-light armhf 4.92-8+deb10u3 [492 kB] Get:64 http://archive.raspbian.org/raspbian buster/main armhf gnupg-agent all 2.2.12-1+rpi1+deb10u1 [393 kB] Get:65 http://archive.raspbian.org/raspbian buster/main armhf guile-2.2-libs armhf 2.2.4+1-2+deb10u1 [4,918 kB] Get:66 http://archive.raspbian.org/raspbian buster/main armhf libboost-iostreams1.67.0 armhf 1.67.0-13+deb10u1 [245 kB] Get:67 http://archive.raspbian.org/raspbian buster/main armhf libboost-system1.67.0 armhf 1.67.0-13+deb10u1 [229 kB] Get:68 http://archive.raspbian.org/raspbian buster/main armhf libcomerr2 armhf 1.44.5-1+deb10u3 [64.2 kB] Get:69 http://archive.raspbian.org/raspbian buster/main armhf libexpat1 armhf 2.2.6-2+deb10u1 [77.3 kB] Get:70 http://archive.raspbian.org/raspbian buster/main armhf libfribidi0 armhf 1.0.5-3.1+deb10u1 [62.3 kB] Get:71 http://archive.raspbian.org/raspbian buster/main armhf mariadb-common all 1:10.3.22-0+deb10u1 [31.9 kB] Get:72 http://archive.raspbian.org/raspbian buster/main armhf libmariadb3 armhf 1:10.3.22-0+deb10u1 [158 kB] Get:73 http://archive.raspbian.org/raspbian buster/main armhf libncursesw5 armhf 6.1+20181013-2+deb10u2 [94.3 kB] Get:74 http://archive.raspbian.org/raspbian buster/main armhf libncurses5 armhf 6.1+20181013-2+deb10u2 [75.3 kB] Get:75 http://archive.raspbian.org/raspbian buster/main armhf libtinfo5 armhf 6.1+20181013-2+deb10u2 [309 kB] Get:76 http://archive.raspbian.org/raspbian buster/main armhf libpython2.7 armhf 2.7.16-2+deb10u1 [873 kB] Get:77 http://archive.raspbian.org/raspbian buster/main armhf libpython2.7-stdlib armhf 2.7.16-2+deb10u1 [1,844 kB] Get:78 http://archive.raspbian.org/raspbian buster/main armhf libpython2.7-minimal armhf 2.7.16-2+deb10u1 [395 kB] Get:79 http://archive.raspbian.org/raspbian buster/main armhf libsasl2-modules armhf 2.1.27+dfsg-1+deb10u1 [96.3 kB] Get:80 http://archive.raspbian.org/raspbian buster/main armhf libss2 armhf 1.44.5-1+deb10u3 [71.0 kB] Get:81 http://archive.raspbian.org/raspbian buster/main armhf libtimedate-perl all 2.3000-2+deb10u1 [38.1 kB] Get:82 http://archive.raspbian.org/raspbian buster/main armhf libxmuu1 armhf 2:1.1.2-2+b3 [23.4 kB] Fetched 137 MB in 13s (10.2 MB/s) Extracting templates from packages: 100% Preconfiguring packages ... (Reading database ... 84946 files and directories currently installed.) Preparing to unpack .../base-files_10.3+rpi1+deb10u3_armhf.deb ... Unpacking base-files (10.3+rpi1+deb10u3) over (10.3+rpi1) ... Setting up base-files (10.3+rpi1+deb10u3) ... Installing new version of config file /etc/debian_version ... (Reading database ... 84946 files and directories currently installed.) Preparing to unpack .../ncurses-bin_6.1+20181013-2+deb10u2_armhf.deb ... Unpacking ncurses-bin (6.1+20181013-2+deb10u2) over (6.1+20181013-2) ... Setting up ncurses-bin (6.1+20181013-2+deb10u2) ... (Reading database ... 84946 files and directories currently installed.) Preparing to unpack .../ncurses-base_6.1+20181013-2+deb10u2_all.deb ... Unpacking ncurses-base (6.1+20181013-2+deb10u2) over (6.1+20181013-2) ... Setting up ncurses-base (6.1+20181013-2+deb10u2) ... (Reading database ... 84946 files and directories currently installed.) Preparing to unpack .../libnss-systemd_241-7~deb10u3+rpi1_armhf.deb ... Unpacking libnss-systemd:armhf (241-7~deb10u3+rpi1) over (241-5+rpi1) ... Preparing to unpack .../libsystemd0_241-7~deb10u3+rpi1_armhf.deb ... Unpacking libsystemd0:armhf (241-7~deb10u3+rpi1) over (241-5+rpi1) ... Setting up libsystemd0:armhf (241-7~deb10u3+rpi1) ... (Reading database ... 84946 files and directories currently installed.) Preparing to unpack .../libpam-systemd_241-7~deb10u3+rpi1_armhf.deb ... Unpacking libpam-systemd:armhf (241-7~deb10u3+rpi1) over (241-5+rpi1) ... Preparing to unpack .../systemd_241-7~deb10u3+rpi1_armhf.deb ... Unpacking systemd (241-7~deb10u3+rpi1) over (241-5+rpi1) ... Preparing to unpack .../udev_241-7~deb10u3+rpi1_armhf.deb ... Unpacking udev (241-7~deb10u3+rpi1) over (241-5+rpi1) ... Preparing to unpack .../libudev1_241-7~deb10u3+rpi1_armhf.deb ... Unpacking libudev1:armhf (241-7~deb10u3+rpi1) over (241-5+rpi1) ... Setting up libudev1:armhf (241-7~deb10u3+rpi1) ... Setting up systemd (241-7~deb10u3+rpi1) ... (Reading database ... 84946 files and directories currently installed.) Preparing to unpack .../0-systemd-sysv_241-7~deb10u3+rpi1_armhf.deb ... Unpacking systemd-sysv (241-7~deb10u3+rpi1) over (241-5+rpi1) ... Preparing to unpack .../1-libssl1.1_1.1.1d-0+deb10u2+rpt1_armhf.deb ... Unpacking libssl1.1:armhf (1.1.1d-0+deb10u2+rpt1) over (1.1.1c-1) ... Preparing to unpack .../2-libcryptsetup12_2%3a2.1.0-5+deb10u2_armhf.deb ... Unpacking libcryptsetup12:armhf (2:2.1.0-5+deb10u2) over (2:2.1.0-5) ... Preparing to unpack .../3-libunbound8_1.9.0-2+deb10u1_armhf.deb ... Unpacking libunbound8:armhf (1.9.0-2+deb10u1) over (1.9.0-2) ... Preparing to unpack .../4-libgnutls-dane0_3.6.7-4+deb10u3_armhf.deb ... Unpacking libgnutls-dane0:armhf (3.6.7-4+deb10u3) over (3.6.7-4) ... Preparing to unpack .../5-libidn2-0_2.0.5-1+deb10u1_armhf.deb ... Unpacking libidn2-0:armhf (2.0.5-1+deb10u1) over (2.0.5-1) ... Setting up libidn2-0:armhf (2.0.5-1+deb10u1) ... (Reading database ... 84946 files and directories currently installed.) Preparing to unpack .../libgnutls30_3.6.7-4+deb10u3_armhf.deb ... Unpacking libgnutls30:armhf (3.6.7-4+deb10u3) over (3.6.7-4) ... Setting up libgnutls30:armhf (3.6.7-4+deb10u3) ... (Reading database ... 84946 files and directories currently installed.) Preparing to unpack .../e2fsprogs-l10n_1.44.5-1+deb10u3_all.deb ... Unpacking e2fsprogs-l10n (1.44.5-1+deb10u3) over (1.44.5-1) ... Preparing to unpack .../initramfs-tools-core_0.133+deb10u1_all.deb ... Unpacking initramfs-tools-core (0.133+deb10u1) over (0.133) ... Preparing to unpack .../initramfs-tools_0.133+deb10u1_all.deb ... Unpacking initramfs-tools (0.133+deb10u1) over (0.133) ... Preparing to unpack .../libext2fs2_1.44.5-1+deb10u3_armhf.deb ... Unpacking libext2fs2:armhf (1.44.5-1+deb10u3) over (1.44.5-1) ... Setting up libext2fs2:armhf (1.44.5-1+deb10u3) ... (Reading database ... 84946 files and directories currently installed.) Preparing to unpack .../e2fsprogs_1.44.5-1+deb10u3_armhf.deb ... Unpacking e2fsprogs (1.44.5-1+deb10u3) over (1.44.5-1) ... Preparing to unpack .../cron_3.0pl1-134+deb10u1_armhf.deb ... Unpacking cron (3.0pl1-134+deb10u1) over (3.0pl1-134) ... Preparing to unpack .../bzip2_1.0.6-9.2~deb10u1_armhf.deb ... Unpacking bzip2 (1.0.6-9.2~deb10u1) over (1.0.6-9.1) ... Preparing to unpack .../libbz2-1.0_1.0.6-9.2~deb10u1_armhf.deb ... Unpacking libbz2-1.0:armhf (1.0.6-9.2~deb10u1) over (1.0.6-9.1) ... Setting up libbz2-1.0:armhf (1.0.6-9.2~deb10u1) ... (Reading database ... 84946 files and directories currently installed.) Preparing to unpack .../gpgv_2.2.12-1+rpi1+deb10u1_armhf.deb ... Unpacking gpgv (2.2.12-1+rpi1+deb10u1) over (2.2.12-1+rpi1) ... Setting up gpgv (2.2.12-1+rpi1+deb10u1) ... (Reading database ... 84946 files and directories currently installed.) Preparing to unpack .../libsasl2-modules-db_2.1.27+dfsg-1+deb10u1_armhf.deb ... Unpacking libsasl2-modules-db:armhf (2.1.27+dfsg-1+deb10u1) over (2.1.27+dfsg-1+b1) ... Setting up libsasl2-modules-db:armhf (2.1.27+dfsg-1+deb10u1) ... (Reading database ... 84945 files and directories currently installed.) Preparing to unpack .../libsasl2-2_2.1.27+dfsg-1+deb10u1_armhf.deb ... Unpacking libsasl2-2:armhf (2.1.27+dfsg-1+deb10u1) over (2.1.27+dfsg-1+b1) ... Setting up libsasl2-2:armhf (2.1.27+dfsg-1+deb10u1) ... (Reading database ... 84944 files and directories currently installed.) Preparing to unpack .../gnupg-utils_2.2.12-1+rpi1+deb10u1_armhf.deb ... Unpacking gnupg-utils (2.2.12-1+rpi1+deb10u1) over (2.2.12-1+rpi1) ... Setting up gnupg-utils (2.2.12-1+rpi1+deb10u1) ... (Reading database ... 84944 files and directories currently installed.) Preparing to unpack .../gpgconf_2.2.12-1+rpi1+deb10u1_armhf.deb ... Unpacking gpgconf (2.2.12-1+rpi1+deb10u1) over (2.2.12-1+rpi1) ... Setting up gpgconf (2.2.12-1+rpi1+deb10u1) ... (Reading database ... 84944 files and directories currently installed.) Preparing to unpack .../gpg-agent_2.2.12-1+rpi1+deb10u1_armhf.deb ... Unpacking gpg-agent (2.2.12-1+rpi1+deb10u1) over (2.2.12-1+rpi1) ... Setting up gpg-agent (2.2.12-1+rpi1+deb10u1) ... (Reading database ... 84944 files and directories currently installed.) Preparing to unpack .../gpg_2.2.12-1+rpi1+deb10u1_armhf.deb ... Unpacking gpg (2.2.12-1+rpi1+deb10u1) over (2.2.12-1+rpi1) ... Setting up gpg (2.2.12-1+rpi1+deb10u1) ... (Reading database ... 84944 files and directories currently installed.) Preparing to unpack .../gpg-wks-server_2.2.12-1+rpi1+deb10u1_armhf.deb ... Unpacking gpg-wks-server (2.2.12-1+rpi1+deb10u1) over (2.2.12-1+rpi1) ... Setting up gpg-wks-server (2.2.12-1+rpi1+deb10u1) ... (Reading database ... 84944 files and directories currently installed.) Preparing to unpack .../dirmngr_2.2.12-1+rpi1+deb10u1_armhf.deb ... Unpacking dirmngr (2.2.12-1+rpi1+deb10u1) over (2.2.12-1+rpi1) ... Setting up dirmngr (2.2.12-1+rpi1+deb10u1) ... (Reading database ... 84944 files and directories currently installed.) Preparing to unpack .../gpg-wks-client_2.2.12-1+rpi1+deb10u1_armhf.deb ... Unpacking gpg-wks-client (2.2.12-1+rpi1+deb10u1) over (2.2.12-1+rpi1) ... Setting up gpg-wks-client (2.2.12-1+rpi1+deb10u1) ... (Reading database ... 84944 files and directories currently installed.) Preparing to unpack .../gnupg-l10n_2.2.12-1+rpi1+deb10u1_all.deb ... Unpacking gnupg-l10n (2.2.12-1+rpi1+deb10u1) over (2.2.12-1+rpi1) ... Setting up gnupg-l10n (2.2.12-1+rpi1+deb10u1) ... (Reading database ... 84944 files and directories currently installed.) Preparing to unpack .../gpgsm_2.2.12-1+rpi1+deb10u1_armhf.deb ... Unpacking gpgsm (2.2.12-1+rpi1+deb10u1) over (2.2.12-1+rpi1) ... Setting up gpgsm (2.2.12-1+rpi1+deb10u1) ... (Reading database ... 84944 files and directories currently installed.) Preparing to unpack .../gnupg_2.2.12-1+rpi1+deb10u1_all.deb ... Unpacking gnupg (2.2.12-1+rpi1+deb10u1) over (2.2.12-1+rpi1) ... Setting up gnupg (2.2.12-1+rpi1+deb10u1) ... (Reading database ... 84944 files and directories currently installed.) Preparing to unpack .../libldap-common_2.4.47+dfsg-3+rpi1+deb10u1_all.deb ... Unpacking libldap-common (2.4.47+dfsg-3+rpi1+deb10u1) over (2.4.47+dfsg-3+rpi1) ... Setting up libldap-common (2.4.47+dfsg-3+rpi1+deb10u1) ... (Reading database ... 84944 files and directories currently installed.) Preparing to unpack .../libldap-2.4-2_2.4.47+dfsg-3+rpi1+deb10u1_armhf.deb ... Unpacking libldap-2.4-2:armhf (2.4.47+dfsg-3+rpi1+deb10u1) over (2.4.47+dfsg-3+rpi1) ... Setting up libldap-2.4-2:armhf (2.4.47+dfsg-3+rpi1+deb10u1) ... (Reading database ... 84944 files and directories currently installed.) Preparing to unpack .../libncurses6_6.1+20181013-2+deb10u2_armhf.deb ... Unpacking libncurses6:armhf (6.1+20181013-2+deb10u2) over (6.1+20181013-2) ... Preparing to unpack .../libtinfo6_6.1+20181013-2+deb10u2_armhf.deb ... Unpacking libtinfo6:armhf (6.1+20181013-2+deb10u2) over (6.1+20181013-2) ... Setting up libtinfo6:armhf (6.1+20181013-2+deb10u2) ... (Reading database ... 84944 files and directories currently installed.) Preparing to unpack .../libncursesw6_6.1+20181013-2+deb10u2_armhf.deb ... Unpacking libncursesw6:armhf (6.1+20181013-2+deb10u2) over (6.1+20181013-2) ... Setting up libncursesw6:armhf (6.1+20181013-2+deb10u2) ... (Reading database ... 84944 files and directories currently installed.) Preparing to unpack .../00-tzdata_2019c-0+deb10u1_all.deb ... Unpacking tzdata (2019c-0+deb10u1) over (2019a-1) ... Preparing to unpack .../01-file_1%3a5.35-4+deb10u1_armhf.deb ... Unpacking file (1:5.35-4+deb10u1) over (1:5.35-4) ... Preparing to unpack .../02-libmagic1_1%3a5.35-4+deb10u1_armhf.deb ... Unpacking libmagic1:armhf (1:5.35-4+deb10u1) over (1:5.35-4) ... Preparing to unpack .../03-libmagic-mgc_1%3a5.35-4+deb10u1_armhf.deb ... Unpacking libmagic-mgc (1:5.35-4+deb10u1) over (1:5.35-4) ... Preparing to unpack .../04-ncurses-term_6.1+20181013-2+deb10u2_all.deb ... Unpacking ncurses-term (6.1+20181013-2+deb10u2) over (6.1+20181013-2) ... Preparing to unpack .../05-openssh-sftp-server_1%3a7.9p1-10+deb10u2_armhf.deb ... Unpacking openssh-sftp-server (1:7.9p1-10+deb10u2) over (1:7.9p1-10) ... Preparing to unpack .../06-libcom-err2_1.44.5-1+deb10u3_armhf.deb ... Unpacking libcom-err2:armhf (1.44.5-1+deb10u3) over (1.44.5-1) ... Preparing to unpack .../07-openssh-server_1%3a7.9p1-10+deb10u2_armhf.deb ... Unpacking openssh-server (1:7.9p1-10+deb10u2) over (1:7.9p1-10) ... Preparing to unpack .../08-openssh-client_1%3a7.9p1-10+deb10u2_armhf.deb ... Unpacking openssh-client (1:7.9p1-10+deb10u2) over (1:7.9p1-10) ... Preparing to unpack .../09-e2fslibs_1.44.5-1+deb10u3_armhf.deb ... Unpacking e2fslibs:armhf (1.44.5-1+deb10u3) over (1.44.5-1) ... Preparing to unpack .../10-exim4-config_4.92-8+deb10u3_all.deb ... Unpacking exim4-config (4.92-8+deb10u3) over (4.92-8) ... Preparing to unpack .../11-exim4-base_4.92-8+deb10u3_armhf.deb ... Unpacking exim4-base (4.92-8+deb10u3) over (4.92-8) ... Preparing to unpack .../12-exim4-daemon-light_4.92-8+deb10u3_armhf.deb ... Unpacking exim4-daemon-light (4.92-8+deb10u3) over (4.92-8) ... Preparing to unpack .../13-gnupg-agent_2.2.12-1+rpi1+deb10u1_all.deb ... Unpacking gnupg-agent (2.2.12-1+rpi1+deb10u1) over (2.2.12-1+rpi1) ... Preparing to unpack .../14-guile-2.2-libs_2.2.4+1-2+deb10u1_armhf.deb ... Unpacking guile-2.2-libs:armhf (2.2.4+1-2+deb10u1) over (2.2.4+1-2) ... Preparing to unpack .../15-libboost-iostreams1.67.0_1.67.0-13+deb10u1_armhf.deb ... Unpacking libboost-iostreams1.67.0:armhf (1.67.0-13+deb10u1) over (1.67.0-13) ... Preparing to unpack .../16-libboost-system1.67.0_1.67.0-13+deb10u1_armhf.deb ... Unpacking libboost-system1.67.0:armhf (1.67.0-13+deb10u1) over (1.67.0-13) ... Preparing to unpack .../17-libcomerr2_1.44.5-1+deb10u3_armhf.deb ... Unpacking libcomerr2:armhf (1.44.5-1+deb10u3) over (1.44.5-1) ... Preparing to unpack .../18-libdrm-common_2.4.100-4+rpi1~bpo10+1_all.deb ... Unpacking libdrm-common (2.4.100-4+rpi1~bpo10+1) over (2.4.97-1+rpi1) ... Preparing to unpack .../19-libdrm2_2.4.100-4+rpi1~bpo10+1_armhf.deb ... Unpacking libdrm2:armhf (2.4.100-4+rpi1~bpo10+1) over (2.4.97-1+rpi1) ... Preparing to unpack .../20-libexpat1_2.2.6-2+deb10u1_armhf.deb ... Unpacking libexpat1:armhf (2.2.6-2+deb10u1) over (2.2.6-2) ... Preparing to unpack .../21-libfribidi0_1.0.5-3.1+deb10u1_armhf.deb ... Unpacking libfribidi0:armhf (1.0.5-3.1+deb10u1) over (1.0.5-3.1) ... Preparing to unpack .../22-mariadb-common_1%3a10.3.22-0+deb10u1_all.deb ... Unpacking mariadb-common (1:10.3.22-0+deb10u1) over (1:10.3.15-1) ... Preparing to unpack .../23-libmariadb3_1%3a10.3.22-0+deb10u1_armhf.deb ... Unpacking libmariadb3:armhf (1:10.3.22-0+deb10u1) over (1:10.3.15-1) ... Preparing to unpack .../24-libncursesw5_6.1+20181013-2+deb10u2_armhf.deb ... Unpacking libncursesw5:armhf (6.1+20181013-2+deb10u2) over (6.1+20181013-2) ... Preparing to unpack .../25-libncurses5_6.1+20181013-2+deb10u2_armhf.deb ... Unpacking libncurses5:armhf (6.1+20181013-2+deb10u2) over (6.1+20181013-2) ... Preparing to unpack .../26-libtinfo5_6.1+20181013-2+deb10u2_armhf.deb ... Unpacking libtinfo5:armhf (6.1+20181013-2+deb10u2) over (6.1+20181013-2) ... Preparing to unpack .../27-libpython2.7_2.7.16-2+deb10u1_armhf.deb ... Unpacking libpython2.7:armhf (2.7.16-2+deb10u1) over (2.7.16-2) ... Preparing to unpack .../28-libpython2.7-stdlib_2.7.16-2+deb10u1_armhf.deb ... Unpacking libpython2.7-stdlib:armhf (2.7.16-2+deb10u1) over (2.7.16-2) ... Preparing to unpack .../29-libpython2.7-minimal_2.7.16-2+deb10u1_armhf.deb ... Unpacking libpython2.7-minimal:armhf (2.7.16-2+deb10u1) over (2.7.16-2) ... Preparing to unpack .../30-raspberrypi-kernel_1.20200212-1_armhf.deb ... Adding 'diversion of /boot/kernel.img to /usr/share/rpikernelhack/kernel.img by rpikernelhack' Adding 'diversion of /boot/kernel7.img to /usr/share/rpikernelhack/kernel7.img by rpikernelhack' Adding 'diversion of /boot/kernel7l.img to /usr/share/rpikernelhack/kernel7l.img by rpikernelhack' Adding 'diversion of /boot/kernel8.img to /usr/share/rpikernelhack/kernel8.img by rpikernelhack' Adding 'diversion of /boot/bcm2708-rpi-b-plus.dtb to /usr/share/rpikernelhack/bcm2708-rpi-b-plus.dtb by rpikernelhack' Adding 'diversion of /boot/bcm2708-rpi-b.dtb to /usr/share/rpikernelhack/bcm2708-rpi-b.dtb by rpikernelhack' Adding 'diversion of /boot/bcm2708-rpi-cm.dtb to /usr/share/rpikernelhack/bcm2708-rpi-cm.dtb by rpikernelhack' Adding 'diversion of /boot/bcm2708-rpi-zero-w.dtb to /usr/share/rpikernelhack/bcm2708-rpi-zero-w.dtb by rpikernelhack' Adding 'diversion of /boot/bcm2708-rpi-zero.dtb to /usr/share/rpikernelhack/bcm2708-rpi-zero.dtb by rpikernelhack' Adding 'diversion of /boot/bcm2709-rpi-2-b.dtb to /usr/share/rpikernelhack/bcm2709-rpi-2-b.dtb by rpikernelhack' Adding 'diversion of /boot/bcm2710-rpi-2-b.dtb to /usr/share/rpikernelhack/bcm2710-rpi-2-b.dtb by rpikernelhack' Adding 'diversion of /boot/bcm2710-rpi-3-b-plus.dtb to /usr/share/rpikernelhack/bcm2710-rpi-3-b-plus.dtb by rpikernelhack' Adding 'diversion of /boot/bcm2710-rpi-3-b.dtb to /usr/share/rpikernelhack/bcm2710-rpi-3-b.dtb by rpikernelhack' Adding 'diversion of /boot/bcm2710-rpi-cm3.dtb to /usr/share/rpikernelhack/bcm2710-rpi-cm3.dtb by rpikernelhack' Adding 'diversion of /boot/bcm2711-rpi-4-b.dtb to /usr/share/rpikernelhack/bcm2711-rpi-4-b.dtb by rpikernelhack' Adding 'diversion of /boot/COPYING.linux to /usr/share/rpikernelhack/COPYING.linux by rpikernelhack' Adding 'diversion of /boot/overlays/README to /usr/share/rpikernelhack/overlays/README by rpikernelhack' Adding 'diversion of /boot/overlays/act-led.dtbo to /usr/share/rpikernelhack/overlays/act-led.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/adau1977-adc.dtbo to /usr/share/rpikernelhack/overlays/adau1977-adc.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/adau7002-simple.dtbo to /usr/share/rpikernelhack/overlays/adau7002-simple.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/ads1015.dtbo to /usr/share/rpikernelhack/overlays/ads1015.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/ads1115.dtbo to /usr/share/rpikernelhack/overlays/ads1115.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/ads7846.dtbo to /usr/share/rpikernelhack/overlays/ads7846.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/adv7282m.dtbo to /usr/share/rpikernelhack/overlays/adv7282m.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/adv728x-m.dtbo to /usr/share/rpikernelhack/overlays/adv728x-m.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/akkordion-iqdacplus.dtbo to /usr/share/rpikernelhack/overlays/akkordion-iqdacplus.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/allo-boss-dac-pcm512x-audio.dtbo to /usr/share/rpikernelhack/overlays/allo-boss-dac-pcm512x-audio.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/allo-digione.dtbo to /usr/share/rpikernelhack/overlays/allo-digione.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/allo-katana-dac-audio.dtbo to /usr/share/rpikernelhack/overlays/allo-katana-dac-audio.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/allo-piano-dac-pcm512x-audio.dtbo to /usr/share/rpikernelhack/overlays/allo-piano-dac-pcm512x-audio.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/allo-piano-dac-plus-pcm512x-audio.dtbo to /usr/share/rpikernelhack/overlays/allo-piano-dac-plus-pcm512x-audio.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/anyspi.dtbo to /usr/share/rpikernelhack/overlays/anyspi.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/apds9960.dtbo to /usr/share/rpikernelhack/overlays/apds9960.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/applepi-dac.dtbo to /usr/share/rpikernelhack/overlays/applepi-dac.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/at86rf233.dtbo to /usr/share/rpikernelhack/overlays/at86rf233.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/audioinjector-addons.dtbo to /usr/share/rpikernelhack/overlays/audioinjector-addons.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/audioinjector-ultra.dtbo to /usr/share/rpikernelhack/overlays/audioinjector-ultra.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/audioinjector-wm8731-audio.dtbo to /usr/share/rpikernelhack/overlays/audioinjector-wm8731-audio.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/audiosense-pi.dtbo to /usr/share/rpikernelhack/overlays/audiosense-pi.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/audremap.dtbo to /usr/share/rpikernelhack/overlays/audremap.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/balena-fin.dtbo to /usr/share/rpikernelhack/overlays/balena-fin.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/bmp085_i2c-sensor.dtbo to /usr/share/rpikernelhack/overlays/bmp085_i2c-sensor.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/dht11.dtbo to /usr/share/rpikernelhack/overlays/dht11.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/dionaudio-loco-v2.dtbo to /usr/share/rpikernelhack/overlays/dionaudio-loco-v2.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/dionaudio-loco.dtbo to /usr/share/rpikernelhack/overlays/dionaudio-loco.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/disable-bt.dtbo to /usr/share/rpikernelhack/overlays/disable-bt.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/disable-wifi.dtbo to /usr/share/rpikernelhack/overlays/disable-wifi.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/dpi18.dtbo to /usr/share/rpikernelhack/overlays/dpi18.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/dpi24.dtbo to /usr/share/rpikernelhack/overlays/dpi24.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/draws.dtbo to /usr/share/rpikernelhack/overlays/draws.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/dwc-otg.dtbo to /usr/share/rpikernelhack/overlays/dwc-otg.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/dwc2.dtbo to /usr/share/rpikernelhack/overlays/dwc2.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/enc28j60-spi2.dtbo to /usr/share/rpikernelhack/overlays/enc28j60-spi2.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/enc28j60.dtbo to /usr/share/rpikernelhack/overlays/enc28j60.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/exc3000.dtbo to /usr/share/rpikernelhack/overlays/exc3000.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/fe-pi-audio.dtbo to /usr/share/rpikernelhack/overlays/fe-pi-audio.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/goodix.dtbo to /usr/share/rpikernelhack/overlays/goodix.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/googlevoicehat-soundcard.dtbo to /usr/share/rpikernelhack/overlays/googlevoicehat-soundcard.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/gpio-fan.dtbo to /usr/share/rpikernelhack/overlays/gpio-fan.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/gpio-ir-tx.dtbo to /usr/share/rpikernelhack/overlays/gpio-ir-tx.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/gpio-ir.dtbo to /usr/share/rpikernelhack/overlays/gpio-ir.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/gpio-key.dtbo to /usr/share/rpikernelhack/overlays/gpio-key.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/gpio-no-bank0-irq.dtbo to /usr/share/rpikernelhack/overlays/gpio-no-bank0-irq.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/gpio-no-irq.dtbo to /usr/share/rpikernelhack/overlays/gpio-no-irq.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/gpio-poweroff.dtbo to /usr/share/rpikernelhack/overlays/gpio-poweroff.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/gpio-shutdown.dtbo to /usr/share/rpikernelhack/overlays/gpio-shutdown.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/hd44780-lcd.dtbo to /usr/share/rpikernelhack/overlays/hd44780-lcd.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/hifiberry-amp.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-amp.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/hifiberry-dac.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dac.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/hifiberry-dacplus.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplus.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/hifiberry-dacplusadc.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplusadc.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/hifiberry-dacplusadcpro.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplusadcpro.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/hifiberry-dacplusdsp.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplusdsp.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/hifiberry-dacplushd.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplushd.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/hifiberry-digi-pro.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-digi-pro.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/hifiberry-digi.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-digi.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/hy28a.dtbo to /usr/share/rpikernelhack/overlays/hy28a.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/hy28b-2017.dtbo to /usr/share/rpikernelhack/overlays/hy28b-2017.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/hy28b.dtbo to /usr/share/rpikernelhack/overlays/hy28b.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/i-sabre-q2m.dtbo to /usr/share/rpikernelhack/overlays/i-sabre-q2m.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/i2c-bcm2708.dtbo to /usr/share/rpikernelhack/overlays/i2c-bcm2708.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/i2c-gpio.dtbo to /usr/share/rpikernelhack/overlays/i2c-gpio.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/i2c-mux.dtbo to /usr/share/rpikernelhack/overlays/i2c-mux.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/i2c-pwm-pca9685a.dtbo to /usr/share/rpikernelhack/overlays/i2c-pwm-pca9685a.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/i2c-rtc-gpio.dtbo to /usr/share/rpikernelhack/overlays/i2c-rtc-gpio.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/i2c-rtc.dtbo to /usr/share/rpikernelhack/overlays/i2c-rtc.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/i2c-sensor.dtbo to /usr/share/rpikernelhack/overlays/i2c-sensor.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/i2c0-bcm2708.dtbo to /usr/share/rpikernelhack/overlays/i2c0-bcm2708.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/i2c0.dtbo to /usr/share/rpikernelhack/overlays/i2c0.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/i2c1-bcm2708.dtbo to /usr/share/rpikernelhack/overlays/i2c1-bcm2708.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/i2c1.dtbo to /usr/share/rpikernelhack/overlays/i2c1.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/i2c3.dtbo to /usr/share/rpikernelhack/overlays/i2c3.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/i2c4.dtbo to /usr/share/rpikernelhack/overlays/i2c4.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/i2c5.dtbo to /usr/share/rpikernelhack/overlays/i2c5.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/i2c6.dtbo to /usr/share/rpikernelhack/overlays/i2c6.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/i2s-gpio28-31.dtbo to /usr/share/rpikernelhack/overlays/i2s-gpio28-31.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/ilitek251x.dtbo to /usr/share/rpikernelhack/overlays/ilitek251x.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/imx219.dtbo to /usr/share/rpikernelhack/overlays/imx219.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/iqaudio-codec.dtbo to /usr/share/rpikernelhack/overlays/iqaudio-codec.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/iqaudio-dac.dtbo to /usr/share/rpikernelhack/overlays/iqaudio-dac.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/iqaudio-dacplus.dtbo to /usr/share/rpikernelhack/overlays/iqaudio-dacplus.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/iqaudio-digi-wm8804-audio.dtbo to /usr/share/rpikernelhack/overlays/iqaudio-digi-wm8804-audio.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/irs1125.dtbo to /usr/share/rpikernelhack/overlays/irs1125.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/jedec-spi-nor.dtbo to /usr/share/rpikernelhack/overlays/jedec-spi-nor.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/justboom-both.dtbo to /usr/share/rpikernelhack/overlays/justboom-both.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/justboom-dac.dtbo to /usr/share/rpikernelhack/overlays/justboom-dac.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/justboom-digi.dtbo to /usr/share/rpikernelhack/overlays/justboom-digi.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/ltc294x.dtbo to /usr/share/rpikernelhack/overlays/ltc294x.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/max98357a.dtbo to /usr/share/rpikernelhack/overlays/max98357a.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/mbed-dac.dtbo to /usr/share/rpikernelhack/overlays/mbed-dac.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/mcp23017.dtbo to /usr/share/rpikernelhack/overlays/mcp23017.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/mcp23s17.dtbo to /usr/share/rpikernelhack/overlays/mcp23s17.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/mcp2515-can0.dtbo to /usr/share/rpikernelhack/overlays/mcp2515-can0.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/mcp2515-can1.dtbo to /usr/share/rpikernelhack/overlays/mcp2515-can1.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/mcp3008.dtbo to /usr/share/rpikernelhack/overlays/mcp3008.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/mcp3202.dtbo to /usr/share/rpikernelhack/overlays/mcp3202.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/mcp342x.dtbo to /usr/share/rpikernelhack/overlays/mcp342x.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/media-center.dtbo to /usr/share/rpikernelhack/overlays/media-center.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/midi-uart0.dtbo to /usr/share/rpikernelhack/overlays/midi-uart0.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/midi-uart1.dtbo to /usr/share/rpikernelhack/overlays/midi-uart1.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/miniuart-bt.dtbo to /usr/share/rpikernelhack/overlays/miniuart-bt.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/mmc.dtbo to /usr/share/rpikernelhack/overlays/mmc.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/mpu6050.dtbo to /usr/share/rpikernelhack/overlays/mpu6050.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/mz61581.dtbo to /usr/share/rpikernelhack/overlays/mz61581.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/ov5647.dtbo to /usr/share/rpikernelhack/overlays/ov5647.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/papirus.dtbo to /usr/share/rpikernelhack/overlays/papirus.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/pi3-act-led.dtbo to /usr/share/rpikernelhack/overlays/pi3-act-led.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/pi3-disable-bt.dtbo to /usr/share/rpikernelhack/overlays/pi3-disable-bt.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/pi3-disable-wifi.dtbo to /usr/share/rpikernelhack/overlays/pi3-disable-wifi.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/pi3-miniuart-bt.dtbo to /usr/share/rpikernelhack/overlays/pi3-miniuart-bt.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/pibell.dtbo to /usr/share/rpikernelhack/overlays/pibell.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/piglow.dtbo to /usr/share/rpikernelhack/overlays/piglow.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/piscreen.dtbo to /usr/share/rpikernelhack/overlays/piscreen.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/piscreen2r.dtbo to /usr/share/rpikernelhack/overlays/piscreen2r.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/pisound.dtbo to /usr/share/rpikernelhack/overlays/pisound.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/pitft22.dtbo to /usr/share/rpikernelhack/overlays/pitft22.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/pitft28-capacitive.dtbo to /usr/share/rpikernelhack/overlays/pitft28-capacitive.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/pitft28-resistive.dtbo to /usr/share/rpikernelhack/overlays/pitft28-resistive.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/pitft35-resistive.dtbo to /usr/share/rpikernelhack/overlays/pitft35-resistive.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/pps-gpio.dtbo to /usr/share/rpikernelhack/overlays/pps-gpio.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/pwm-2chan.dtbo to /usr/share/rpikernelhack/overlays/pwm-2chan.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/pwm-ir-tx.dtbo to /usr/share/rpikernelhack/overlays/pwm-ir-tx.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/pwm.dtbo to /usr/share/rpikernelhack/overlays/pwm.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/qca7000.dtbo to /usr/share/rpikernelhack/overlays/qca7000.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/rotary-encoder.dtbo to /usr/share/rpikernelhack/overlays/rotary-encoder.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/rpi-backlight.dtbo to /usr/share/rpikernelhack/overlays/rpi-backlight.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/rpi-cirrus-wm5102.dtbo to /usr/share/rpikernelhack/overlays/rpi-cirrus-wm5102.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/rpi-dac.dtbo to /usr/share/rpikernelhack/overlays/rpi-dac.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/rpi-display.dtbo to /usr/share/rpikernelhack/overlays/rpi-display.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/rpi-ft5406.dtbo to /usr/share/rpikernelhack/overlays/rpi-ft5406.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/rpi-poe.dtbo to /usr/share/rpikernelhack/overlays/rpi-poe.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/rpi-proto.dtbo to /usr/share/rpikernelhack/overlays/rpi-proto.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/rpi-sense.dtbo to /usr/share/rpikernelhack/overlays/rpi-sense.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/rpi-tv.dtbo to /usr/share/rpikernelhack/overlays/rpi-tv.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/rra-digidac1-wm8741-audio.dtbo to /usr/share/rpikernelhack/overlays/rra-digidac1-wm8741-audio.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/sc16is750-i2c.dtbo to /usr/share/rpikernelhack/overlays/sc16is750-i2c.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/sc16is752-i2c.dtbo to /usr/share/rpikernelhack/overlays/sc16is752-i2c.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/sc16is752-spi1.dtbo to /usr/share/rpikernelhack/overlays/sc16is752-spi1.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/sdhost.dtbo to /usr/share/rpikernelhack/overlays/sdhost.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/sdio.dtbo to /usr/share/rpikernelhack/overlays/sdio.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/sdtweak.dtbo to /usr/share/rpikernelhack/overlays/sdtweak.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/smi-dev.dtbo to /usr/share/rpikernelhack/overlays/smi-dev.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/smi-nand.dtbo to /usr/share/rpikernelhack/overlays/smi-nand.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/smi.dtbo to /usr/share/rpikernelhack/overlays/smi.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi-gpio35-39.dtbo to /usr/share/rpikernelhack/overlays/spi-gpio35-39.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi-gpio40-45.dtbo to /usr/share/rpikernelhack/overlays/spi-gpio40-45.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi-rtc.dtbo to /usr/share/rpikernelhack/overlays/spi-rtc.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi0-cs.dtbo to /usr/share/rpikernelhack/overlays/spi0-cs.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi0-hw-cs.dtbo to /usr/share/rpikernelhack/overlays/spi0-hw-cs.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi1-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi1-1cs.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi1-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi1-2cs.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi1-3cs.dtbo to /usr/share/rpikernelhack/overlays/spi1-3cs.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi2-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi2-1cs.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi2-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi2-2cs.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi2-3cs.dtbo to /usr/share/rpikernelhack/overlays/spi2-3cs.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi3-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi3-1cs.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi3-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi3-2cs.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi4-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi4-1cs.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi4-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi4-2cs.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi5-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi5-1cs.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi5-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi5-2cs.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi6-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi6-1cs.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/spi6-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi6-2cs.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/ssd1306.dtbo to /usr/share/rpikernelhack/overlays/ssd1306.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/superaudioboard.dtbo to /usr/share/rpikernelhack/overlays/superaudioboard.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/sx150x.dtbo to /usr/share/rpikernelhack/overlays/sx150x.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/tc358743-audio.dtbo to /usr/share/rpikernelhack/overlays/tc358743-audio.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/tc358743.dtbo to /usr/share/rpikernelhack/overlays/tc358743.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/tinylcd35.dtbo to /usr/share/rpikernelhack/overlays/tinylcd35.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/tpm-slb9670.dtbo to /usr/share/rpikernelhack/overlays/tpm-slb9670.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/uart0.dtbo to /usr/share/rpikernelhack/overlays/uart0.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/uart1.dtbo to /usr/share/rpikernelhack/overlays/uart1.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/uart2.dtbo to /usr/share/rpikernelhack/overlays/uart2.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/uart3.dtbo to /usr/share/rpikernelhack/overlays/uart3.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/uart4.dtbo to /usr/share/rpikernelhack/overlays/uart4.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/uart5.dtbo to /usr/share/rpikernelhack/overlays/uart5.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/udrc.dtbo to /usr/share/rpikernelhack/overlays/udrc.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/upstream.dtbo to /usr/share/rpikernelhack/overlays/upstream.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/vc4-fkms-v3d.dtbo to /usr/share/rpikernelhack/overlays/vc4-fkms-v3d.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/vc4-kms-kippah-7inch.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-kippah-7inch.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/vc4-kms-v3d.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-v3d.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/vga666.dtbo to /usr/share/rpikernelhack/overlays/vga666.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/w1-gpio-pullup.dtbo to /usr/share/rpikernelhack/overlays/w1-gpio-pullup.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/w1-gpio.dtbo to /usr/share/rpikernelhack/overlays/w1-gpio.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/w5500.dtbo to /usr/share/rpikernelhack/overlays/w5500.dtbo by rpikernelhack' Adding 'diversion of /boot/overlays/wittypi.dtbo to /usr/share/rpikernelhack/overlays/wittypi.dtbo by rpikernelhack' Unpacking raspberrypi-kernel (1.20200212-1) over (1.20190620+1-1) ... run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.19.50+ /boot/kernel.img run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.19.50-v7+ /boot/kernel7.img run-parts: executing /etc/kernel/postrm.d/initramfs-tools 4.19.50-v7l+ /boot/kernel7l.img Preparing to unpack .../31-libraspberrypi-bin_1.20200212-1_armhf.deb ... Unpacking libraspberrypi-bin (1.20200212-1) over (1.20190620+1-1) ... Preparing to unpack .../32-libraspberrypi0_1.20200212-1_armhf.deb ... Unpacking libraspberrypi0 (1.20200212-1) over (1.20190620+1-1) ... Preparing to unpack .../33-raspberrypi-bootloader_1.20200212-1_armhf.deb ... Adding 'diversion of /boot/start.elf to /usr/share/rpikernelhack/start.elf by rpikernelhack' Adding 'diversion of /boot/start_cd.elf to /usr/share/rpikernelhack/start_cd.elf by rpikernelhack' Adding 'diversion of /boot/start_db.elf to /usr/share/rpikernelhack/start_db.elf by rpikernelhack' Adding 'diversion of /boot/start_x.elf to /usr/share/rpikernelhack/start_x.elf by rpikernelhack' Adding 'diversion of /boot/fixup.dat to /usr/share/rpikernelhack/fixup.dat by rpikernelhack' Adding 'diversion of /boot/fixup_cd.dat to /usr/share/rpikernelhack/fixup_cd.dat by rpikernelhack' Adding 'diversion of /boot/fixup_db.dat to /usr/share/rpikernelhack/fixup_db.dat by rpikernelhack' Adding 'diversion of /boot/fixup_x.dat to /usr/share/rpikernelhack/fixup_x.dat by rpikernelhack' Adding 'diversion of /boot/bootcode.bin to /usr/share/rpikernelhack/bootcode.bin by rpikernelhack' Adding 'diversion of /boot/start4.elf to /usr/share/rpikernelhack/start4.elf by rpikernelhack' Adding 'diversion of /boot/start4cd.elf to /usr/share/rpikernelhack/start4cd.elf by rpikernelhack' Adding 'diversion of /boot/start4db.elf to /usr/share/rpikernelhack/start4db.elf by rpikernelhack' Adding 'diversion of /boot/start4x.elf to /usr/share/rpikernelhack/start4x.elf by rpikernelhack' Adding 'diversion of /boot/fixup4.dat to /usr/share/rpikernelhack/fixup4.dat by rpikernelhack' Adding 'diversion of /boot/fixup4cd.dat to /usr/share/rpikernelhack/fixup4cd.dat by rpikernelhack' Adding 'diversion of /boot/fixup4db.dat to /usr/share/rpikernelhack/fixup4db.dat by rpikernelhack' Adding 'diversion of /boot/fixup4x.dat to /usr/share/rpikernelhack/fixup4x.dat by rpikernelhack' Adding 'diversion of /boot/LICENCE.broadcom to /usr/share/rpikernelhack/LICENCE.broadcom by rpikernelhack' Unpacking raspberrypi-bootloader (1.20200212-1) over (1.20190620+1-1) ... Preparing to unpack .../34-libsasl2-modules_2.1.27+dfsg-1+deb10u1_armhf.deb ... Unpacking libsasl2-modules:armhf (2.1.27+dfsg-1+deb10u1) over (2.1.27+dfsg-1+b1) ... Preparing to unpack .../35-libss2_1.44.5-1+deb10u3_armhf.deb ... Unpacking libss2:armhf (1.44.5-1+deb10u3) over (1.44.5-1) ... Preparing to unpack .../36-libtimedate-perl_2.3000-2+deb10u1_all.deb ... Unpacking libtimedate-perl (2.3000-2+deb10u1) over (2.3000-2) ... Preparing to unpack .../37-libxmuu1_2%3a1.1.2-2+b3_armhf.deb ... Unpacking libxmuu1:armhf (2:1.1.2-2+b3) over (2:1.1.2-2) ... Preparing to unpack .../38-openssl_1.1.1d-0+deb10u2+rpt1_armhf.deb ... Unpacking openssl (1.1.1d-0+deb10u2+rpt1) over (1.1.1c-1) ... Preparing to unpack .../39-raspberrypi-kernel-headers_1.20200212-1_armhf.deb ... Unpacking raspberrypi-kernel-headers (1.20200212-1) over (1.20190620+1-1) ... dpkg: warning: unable to delete old directory '/lib/modules/4.19.50-v7+': Directory not empty Setting up libexpat1:armhf (2.2.6-2+deb10u1) ... Setting up systemd-sysv (241-7~deb10u3+rpi1) ... Setting up e2fslibs:armhf (1.44.5-1+deb10u3) ... Setting up libmagic-mgc (1:5.35-4+deb10u1) ... Setting up libssl1.1:armhf (1.1.1d-0+deb10u2+rpt1) ... Setting up cron (3.0pl1-134+deb10u1) ... Setting up libsasl2-modules:armhf (2.1.27+dfsg-1+deb10u1) ... Setting up libmagic1:armhf (1:5.35-4+deb10u1) ... Setting up libnss-systemd:armhf (241-7~deb10u3+rpi1) ... Setting up libcom-err2:armhf (1.44.5-1+deb10u3) ... Setting up file (1:5.35-4+deb10u1) ... Setting up bzip2 (1.0.6-9.2~deb10u1) ... Setting up raspberrypi-kernel (1.20200212-1) ... Removing 'diversion of /boot/kernel.img to /usr/share/rpikernelhack/kernel.img by rpikernelhack' Removing 'diversion of /boot/kernel7.img to /usr/share/rpikernelhack/kernel7.img by rpikernelhack' Removing 'diversion of /boot/kernel7l.img to /usr/share/rpikernelhack/kernel7l.img by rpikernelhack' Removing 'diversion of /boot/kernel8.img to /usr/share/rpikernelhack/kernel8.img by rpikernelhack' Removing 'diversion of /boot/bcm2708-rpi-b-plus.dtb to /usr/share/rpikernelhack/bcm2708-rpi-b-plus.dtb by rpikernelhack' Removing 'diversion of /boot/bcm2708-rpi-b.dtb to /usr/share/rpikernelhack/bcm2708-rpi-b.dtb by rpikernelhack' Removing 'diversion of /boot/bcm2708-rpi-cm.dtb to /usr/share/rpikernelhack/bcm2708-rpi-cm.dtb by rpikernelhack' Removing 'diversion of /boot/bcm2708-rpi-zero-w.dtb to /usr/share/rpikernelhack/bcm2708-rpi-zero-w.dtb by rpikernelhack' Removing 'diversion of /boot/bcm2708-rpi-zero.dtb to /usr/share/rpikernelhack/bcm2708-rpi-zero.dtb by rpikernelhack' Removing 'diversion of /boot/bcm2709-rpi-2-b.dtb to /usr/share/rpikernelhack/bcm2709-rpi-2-b.dtb by rpikernelhack' Removing 'diversion of /boot/bcm2710-rpi-2-b.dtb to /usr/share/rpikernelhack/bcm2710-rpi-2-b.dtb by rpikernelhack' Removing 'diversion of /boot/bcm2710-rpi-3-b-plus.dtb to /usr/share/rpikernelhack/bcm2710-rpi-3-b-plus.dtb by rpikernelhack' Removing 'diversion of /boot/bcm2710-rpi-3-b.dtb to /usr/share/rpikernelhack/bcm2710-rpi-3-b.dtb by rpikernelhack' Removing 'diversion of /boot/bcm2710-rpi-cm3.dtb to /usr/share/rpikernelhack/bcm2710-rpi-cm3.dtb by rpikernelhack' Removing 'diversion of /boot/bcm2711-rpi-4-b.dtb to /usr/share/rpikernelhack/bcm2711-rpi-4-b.dtb by rpikernelhack' Removing 'diversion of /boot/COPYING.linux to /usr/share/rpikernelhack/COPYING.linux by rpikernelhack' Removing 'diversion of /boot/overlays/README to /usr/share/rpikernelhack/overlays/README by rpikernelhack' Removing 'diversion of /boot/overlays/act-led.dtbo to /usr/share/rpikernelhack/overlays/act-led.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/adau1977-adc.dtbo to /usr/share/rpikernelhack/overlays/adau1977-adc.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/adau7002-simple.dtbo to /usr/share/rpikernelhack/overlays/adau7002-simple.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/ads1015.dtbo to /usr/share/rpikernelhack/overlays/ads1015.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/ads1115.dtbo to /usr/share/rpikernelhack/overlays/ads1115.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/ads7846.dtbo to /usr/share/rpikernelhack/overlays/ads7846.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/adv7282m.dtbo to /usr/share/rpikernelhack/overlays/adv7282m.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/adv728x-m.dtbo to /usr/share/rpikernelhack/overlays/adv728x-m.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/akkordion-iqdacplus.dtbo to /usr/share/rpikernelhack/overlays/akkordion-iqdacplus.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/allo-boss-dac-pcm512x-audio.dtbo to /usr/share/rpikernelhack/overlays/allo-boss-dac-pcm512x-audio.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/allo-digione.dtbo to /usr/share/rpikernelhack/overlays/allo-digione.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/allo-katana-dac-audio.dtbo to /usr/share/rpikernelhack/overlays/allo-katana-dac-audio.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/allo-piano-dac-pcm512x-audio.dtbo to /usr/share/rpikernelhack/overlays/allo-piano-dac-pcm512x-audio.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/allo-piano-dac-plus-pcm512x-audio.dtbo to /usr/share/rpikernelhack/overlays/allo-piano-dac-plus-pcm512x-audio.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/anyspi.dtbo to /usr/share/rpikernelhack/overlays/anyspi.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/apds9960.dtbo to /usr/share/rpikernelhack/overlays/apds9960.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/applepi-dac.dtbo to /usr/share/rpikernelhack/overlays/applepi-dac.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/at86rf233.dtbo to /usr/share/rpikernelhack/overlays/at86rf233.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/audioinjector-addons.dtbo to /usr/share/rpikernelhack/overlays/audioinjector-addons.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/audioinjector-ultra.dtbo to /usr/share/rpikernelhack/overlays/audioinjector-ultra.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/audioinjector-wm8731-audio.dtbo to /usr/share/rpikernelhack/overlays/audioinjector-wm8731-audio.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/audiosense-pi.dtbo to /usr/share/rpikernelhack/overlays/audiosense-pi.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/audremap.dtbo to /usr/share/rpikernelhack/overlays/audremap.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/balena-fin.dtbo to /usr/share/rpikernelhack/overlays/balena-fin.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/bmp085_i2c-sensor.dtbo to /usr/share/rpikernelhack/overlays/bmp085_i2c-sensor.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/dht11.dtbo to /usr/share/rpikernelhack/overlays/dht11.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/dionaudio-loco-v2.dtbo to /usr/share/rpikernelhack/overlays/dionaudio-loco-v2.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/dionaudio-loco.dtbo to /usr/share/rpikernelhack/overlays/dionaudio-loco.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/disable-bt.dtbo to /usr/share/rpikernelhack/overlays/disable-bt.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/disable-wifi.dtbo to /usr/share/rpikernelhack/overlays/disable-wifi.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/dpi18.dtbo to /usr/share/rpikernelhack/overlays/dpi18.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/dpi24.dtbo to /usr/share/rpikernelhack/overlays/dpi24.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/draws.dtbo to /usr/share/rpikernelhack/overlays/draws.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/dwc-otg.dtbo to /usr/share/rpikernelhack/overlays/dwc-otg.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/dwc2.dtbo to /usr/share/rpikernelhack/overlays/dwc2.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/enc28j60-spi2.dtbo to /usr/share/rpikernelhack/overlays/enc28j60-spi2.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/enc28j60.dtbo to /usr/share/rpikernelhack/overlays/enc28j60.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/exc3000.dtbo to /usr/share/rpikernelhack/overlays/exc3000.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/fe-pi-audio.dtbo to /usr/share/rpikernelhack/overlays/fe-pi-audio.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/goodix.dtbo to /usr/share/rpikernelhack/overlays/goodix.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/googlevoicehat-soundcard.dtbo to /usr/share/rpikernelhack/overlays/googlevoicehat-soundcard.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/gpio-fan.dtbo to /usr/share/rpikernelhack/overlays/gpio-fan.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/gpio-ir-tx.dtbo to /usr/share/rpikernelhack/overlays/gpio-ir-tx.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/gpio-ir.dtbo to /usr/share/rpikernelhack/overlays/gpio-ir.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/gpio-key.dtbo to /usr/share/rpikernelhack/overlays/gpio-key.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/gpio-no-bank0-irq.dtbo to /usr/share/rpikernelhack/overlays/gpio-no-bank0-irq.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/gpio-no-irq.dtbo to /usr/share/rpikernelhack/overlays/gpio-no-irq.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/gpio-poweroff.dtbo to /usr/share/rpikernelhack/overlays/gpio-poweroff.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/gpio-shutdown.dtbo to /usr/share/rpikernelhack/overlays/gpio-shutdown.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/hd44780-lcd.dtbo to /usr/share/rpikernelhack/overlays/hd44780-lcd.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/hifiberry-amp.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-amp.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/hifiberry-dac.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dac.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/hifiberry-dacplus.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplus.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/hifiberry-dacplusadc.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplusadc.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/hifiberry-dacplusadcpro.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplusadcpro.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/hifiberry-dacplusdsp.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplusdsp.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/hifiberry-dacplushd.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-dacplushd.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/hifiberry-digi-pro.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-digi-pro.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/hifiberry-digi.dtbo to /usr/share/rpikernelhack/overlays/hifiberry-digi.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/hy28a.dtbo to /usr/share/rpikernelhack/overlays/hy28a.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/hy28b-2017.dtbo to /usr/share/rpikernelhack/overlays/hy28b-2017.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/hy28b.dtbo to /usr/share/rpikernelhack/overlays/hy28b.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/i-sabre-q2m.dtbo to /usr/share/rpikernelhack/overlays/i-sabre-q2m.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/i2c-bcm2708.dtbo to /usr/share/rpikernelhack/overlays/i2c-bcm2708.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/i2c-gpio.dtbo to /usr/share/rpikernelhack/overlays/i2c-gpio.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/i2c-mux.dtbo to /usr/share/rpikernelhack/overlays/i2c-mux.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/i2c-pwm-pca9685a.dtbo to /usr/share/rpikernelhack/overlays/i2c-pwm-pca9685a.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/i2c-rtc-gpio.dtbo to /usr/share/rpikernelhack/overlays/i2c-rtc-gpio.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/i2c-rtc.dtbo to /usr/share/rpikernelhack/overlays/i2c-rtc.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/i2c-sensor.dtbo to /usr/share/rpikernelhack/overlays/i2c-sensor.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/i2c0-bcm2708.dtbo to /usr/share/rpikernelhack/overlays/i2c0-bcm2708.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/i2c0.dtbo to /usr/share/rpikernelhack/overlays/i2c0.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/i2c1-bcm2708.dtbo to /usr/share/rpikernelhack/overlays/i2c1-bcm2708.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/i2c1.dtbo to /usr/share/rpikernelhack/overlays/i2c1.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/i2c3.dtbo to /usr/share/rpikernelhack/overlays/i2c3.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/i2c4.dtbo to /usr/share/rpikernelhack/overlays/i2c4.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/i2c5.dtbo to /usr/share/rpikernelhack/overlays/i2c5.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/i2c6.dtbo to /usr/share/rpikernelhack/overlays/i2c6.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/i2s-gpio28-31.dtbo to /usr/share/rpikernelhack/overlays/i2s-gpio28-31.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/ilitek251x.dtbo to /usr/share/rpikernelhack/overlays/ilitek251x.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/imx219.dtbo to /usr/share/rpikernelhack/overlays/imx219.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/iqaudio-codec.dtbo to /usr/share/rpikernelhack/overlays/iqaudio-codec.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/iqaudio-dac.dtbo to /usr/share/rpikernelhack/overlays/iqaudio-dac.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/iqaudio-dacplus.dtbo to /usr/share/rpikernelhack/overlays/iqaudio-dacplus.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/iqaudio-digi-wm8804-audio.dtbo to /usr/share/rpikernelhack/overlays/iqaudio-digi-wm8804-audio.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/irs1125.dtbo to /usr/share/rpikernelhack/overlays/irs1125.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/jedec-spi-nor.dtbo to /usr/share/rpikernelhack/overlays/jedec-spi-nor.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/justboom-both.dtbo to /usr/share/rpikernelhack/overlays/justboom-both.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/justboom-dac.dtbo to /usr/share/rpikernelhack/overlays/justboom-dac.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/justboom-digi.dtbo to /usr/share/rpikernelhack/overlays/justboom-digi.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/ltc294x.dtbo to /usr/share/rpikernelhack/overlays/ltc294x.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/max98357a.dtbo to /usr/share/rpikernelhack/overlays/max98357a.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/mbed-dac.dtbo to /usr/share/rpikernelhack/overlays/mbed-dac.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/mcp23017.dtbo to /usr/share/rpikernelhack/overlays/mcp23017.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/mcp23s17.dtbo to /usr/share/rpikernelhack/overlays/mcp23s17.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/mcp2515-can0.dtbo to /usr/share/rpikernelhack/overlays/mcp2515-can0.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/mcp2515-can1.dtbo to /usr/share/rpikernelhack/overlays/mcp2515-can1.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/mcp3008.dtbo to /usr/share/rpikernelhack/overlays/mcp3008.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/mcp3202.dtbo to /usr/share/rpikernelhack/overlays/mcp3202.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/mcp342x.dtbo to /usr/share/rpikernelhack/overlays/mcp342x.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/media-center.dtbo to /usr/share/rpikernelhack/overlays/media-center.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/midi-uart0.dtbo to /usr/share/rpikernelhack/overlays/midi-uart0.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/midi-uart1.dtbo to /usr/share/rpikernelhack/overlays/midi-uart1.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/miniuart-bt.dtbo to /usr/share/rpikernelhack/overlays/miniuart-bt.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/mmc.dtbo to /usr/share/rpikernelhack/overlays/mmc.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/mpu6050.dtbo to /usr/share/rpikernelhack/overlays/mpu6050.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/mz61581.dtbo to /usr/share/rpikernelhack/overlays/mz61581.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/ov5647.dtbo to /usr/share/rpikernelhack/overlays/ov5647.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/papirus.dtbo to /usr/share/rpikernelhack/overlays/papirus.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/pi3-act-led.dtbo to /usr/share/rpikernelhack/overlays/pi3-act-led.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/pi3-disable-bt.dtbo to /usr/share/rpikernelhack/overlays/pi3-disable-bt.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/pi3-disable-wifi.dtbo to /usr/share/rpikernelhack/overlays/pi3-disable-wifi.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/pi3-miniuart-bt.dtbo to /usr/share/rpikernelhack/overlays/pi3-miniuart-bt.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/pibell.dtbo to /usr/share/rpikernelhack/overlays/pibell.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/piglow.dtbo to /usr/share/rpikernelhack/overlays/piglow.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/piscreen.dtbo to /usr/share/rpikernelhack/overlays/piscreen.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/piscreen2r.dtbo to /usr/share/rpikernelhack/overlays/piscreen2r.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/pisound.dtbo to /usr/share/rpikernelhack/overlays/pisound.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/pitft22.dtbo to /usr/share/rpikernelhack/overlays/pitft22.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/pitft28-capacitive.dtbo to /usr/share/rpikernelhack/overlays/pitft28-capacitive.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/pitft28-resistive.dtbo to /usr/share/rpikernelhack/overlays/pitft28-resistive.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/pitft35-resistive.dtbo to /usr/share/rpikernelhack/overlays/pitft35-resistive.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/pps-gpio.dtbo to /usr/share/rpikernelhack/overlays/pps-gpio.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/pwm-2chan.dtbo to /usr/share/rpikernelhack/overlays/pwm-2chan.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/pwm-ir-tx.dtbo to /usr/share/rpikernelhack/overlays/pwm-ir-tx.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/pwm.dtbo to /usr/share/rpikernelhack/overlays/pwm.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/qca7000.dtbo to /usr/share/rpikernelhack/overlays/qca7000.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/rotary-encoder.dtbo to /usr/share/rpikernelhack/overlays/rotary-encoder.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/rpi-backlight.dtbo to /usr/share/rpikernelhack/overlays/rpi-backlight.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/rpi-cirrus-wm5102.dtbo to /usr/share/rpikernelhack/overlays/rpi-cirrus-wm5102.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/rpi-dac.dtbo to /usr/share/rpikernelhack/overlays/rpi-dac.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/rpi-display.dtbo to /usr/share/rpikernelhack/overlays/rpi-display.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/rpi-ft5406.dtbo to /usr/share/rpikernelhack/overlays/rpi-ft5406.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/rpi-poe.dtbo to /usr/share/rpikernelhack/overlays/rpi-poe.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/rpi-proto.dtbo to /usr/share/rpikernelhack/overlays/rpi-proto.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/rpi-sense.dtbo to /usr/share/rpikernelhack/overlays/rpi-sense.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/rpi-tv.dtbo to /usr/share/rpikernelhack/overlays/rpi-tv.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/rra-digidac1-wm8741-audio.dtbo to /usr/share/rpikernelhack/overlays/rra-digidac1-wm8741-audio.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/sc16is750-i2c.dtbo to /usr/share/rpikernelhack/overlays/sc16is750-i2c.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/sc16is752-i2c.dtbo to /usr/share/rpikernelhack/overlays/sc16is752-i2c.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/sc16is752-spi1.dtbo to /usr/share/rpikernelhack/overlays/sc16is752-spi1.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/sdhost.dtbo to /usr/share/rpikernelhack/overlays/sdhost.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/sdio.dtbo to /usr/share/rpikernelhack/overlays/sdio.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/sdtweak.dtbo to /usr/share/rpikernelhack/overlays/sdtweak.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/smi-dev.dtbo to /usr/share/rpikernelhack/overlays/smi-dev.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/smi-nand.dtbo to /usr/share/rpikernelhack/overlays/smi-nand.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/smi.dtbo to /usr/share/rpikernelhack/overlays/smi.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi-gpio35-39.dtbo to /usr/share/rpikernelhack/overlays/spi-gpio35-39.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi-gpio40-45.dtbo to /usr/share/rpikernelhack/overlays/spi-gpio40-45.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi-rtc.dtbo to /usr/share/rpikernelhack/overlays/spi-rtc.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi0-cs.dtbo to /usr/share/rpikernelhack/overlays/spi0-cs.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi0-hw-cs.dtbo to /usr/share/rpikernelhack/overlays/spi0-hw-cs.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi1-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi1-1cs.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi1-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi1-2cs.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi1-3cs.dtbo to /usr/share/rpikernelhack/overlays/spi1-3cs.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi2-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi2-1cs.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi2-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi2-2cs.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi2-3cs.dtbo to /usr/share/rpikernelhack/overlays/spi2-3cs.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi3-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi3-1cs.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi3-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi3-2cs.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi4-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi4-1cs.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi4-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi4-2cs.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi5-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi5-1cs.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi5-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi5-2cs.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi6-1cs.dtbo to /usr/share/rpikernelhack/overlays/spi6-1cs.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/spi6-2cs.dtbo to /usr/share/rpikernelhack/overlays/spi6-2cs.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/ssd1306.dtbo to /usr/share/rpikernelhack/overlays/ssd1306.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/superaudioboard.dtbo to /usr/share/rpikernelhack/overlays/superaudioboard.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/sx150x.dtbo to /usr/share/rpikernelhack/overlays/sx150x.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/tc358743-audio.dtbo to /usr/share/rpikernelhack/overlays/tc358743-audio.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/tc358743.dtbo to /usr/share/rpikernelhack/overlays/tc358743.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/tinylcd35.dtbo to /usr/share/rpikernelhack/overlays/tinylcd35.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/tpm-slb9670.dtbo to /usr/share/rpikernelhack/overlays/tpm-slb9670.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/uart0.dtbo to /usr/share/rpikernelhack/overlays/uart0.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/uart1.dtbo to /usr/share/rpikernelhack/overlays/uart1.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/uart2.dtbo to /usr/share/rpikernelhack/overlays/uart2.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/uart3.dtbo to /usr/share/rpikernelhack/overlays/uart3.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/uart4.dtbo to /usr/share/rpikernelhack/overlays/uart4.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/uart5.dtbo to /usr/share/rpikernelhack/overlays/uart5.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/udrc.dtbo to /usr/share/rpikernelhack/overlays/udrc.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/upstream.dtbo to /usr/share/rpikernelhack/overlays/upstream.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/vc4-fkms-v3d.dtbo to /usr/share/rpikernelhack/overlays/vc4-fkms-v3d.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/vc4-kms-kippah-7inch.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-kippah-7inch.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/vc4-kms-v3d.dtbo to /usr/share/rpikernelhack/overlays/vc4-kms-v3d.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/vga666.dtbo to /usr/share/rpikernelhack/overlays/vga666.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/w1-gpio-pullup.dtbo to /usr/share/rpikernelhack/overlays/w1-gpio-pullup.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/w1-gpio.dtbo to /usr/share/rpikernelhack/overlays/w1-gpio.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/w5500.dtbo to /usr/share/rpikernelhack/overlays/w5500.dtbo by rpikernelhack' Removing 'diversion of /boot/overlays/wittypi.dtbo to /usr/share/rpikernelhack/overlays/wittypi.dtbo by rpikernelhack' run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 4.19.97+ /boot/kernel.img run-parts: executing /etc/kernel/postinst.d/initramfs-tools 4.19.97+ /boot/kernel.img run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 4.19.97-v7+ /boot/kernel7.img run-parts: executing /etc/kernel/postinst.d/initramfs-tools 4.19.97-v7+ /boot/kernel7.img run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 4.19.97-v7l+ /boot/kernel7l.img run-parts: executing /etc/kernel/postinst.d/initramfs-tools 4.19.97-v7l+ /boot/kernel7l.img run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 4.19.97-v8+ /boot/kernel8.img run-parts: executing /etc/kernel/postinst.d/initramfs-tools 4.19.97-v8+ /boot/kernel8.img Setting up tzdata (2019c-0+deb10u1) ... Current default time zone: 'Etc/UTC' Local time is now: Wed Apr 8 14:22:47 UTC 2020. Universal Time is now: Wed Apr 8 14:22:47 UTC 2020. Run 'dpkg-reconfigure tzdata' if you wish to change it. Setting up mariadb-common (1:10.3.22-0+deb10u1) ... Setting up libunbound8:armhf (1.9.0-2+deb10u1) ... Setting up libpython2.7-minimal:armhf (2.7.16-2+deb10u1) ... Setting up raspberrypi-kernel-headers (1.20200212-1) ... Setting up libncurses6:armhf (6.1+20181013-2+deb10u2) ... Setting up libfribidi0:armhf (1.0.5-3.1+deb10u1) ... Setting up udev (241-7~deb10u3+rpi1) ... update-initramfs: deferring update (trigger activated) Setting up libss2:armhf (1.44.5-1+deb10u3) ... Setting up gnupg-agent (2.2.12-1+rpi1+deb10u1) ... Setting up libmariadb3:armhf (1:10.3.22-0+deb10u1) ... Setting up libboost-iostreams1.67.0:armhf (1.67.0-13+deb10u1) ... Setting up raspberrypi-bootloader (1.20200212-1) ... Removing 'diversion of /boot/start.elf to /usr/share/rpikernelhack/start.elf by rpikernelhack' Removing 'diversion of /boot/start_cd.elf to /usr/share/rpikernelhack/start_cd.elf by rpikernelhack' Removing 'diversion of /boot/start_db.elf to /usr/share/rpikernelhack/start_db.elf by rpikernelhack' Removing 'diversion of /boot/start_x.elf to /usr/share/rpikernelhack/start_x.elf by rpikernelhack' Removing 'diversion of /boot/fixup.dat to /usr/share/rpikernelhack/fixup.dat by rpikernelhack' Removing 'diversion of /boot/fixup_cd.dat to /usr/share/rpikernelhack/fixup_cd.dat by rpikernelhack' Removing 'diversion of /boot/fixup_db.dat to /usr/share/rpikernelhack/fixup_db.dat by rpikernelhack' Removing 'diversion of /boot/fixup_x.dat to /usr/share/rpikernelhack/fixup_x.dat by rpikernelhack' Removing 'diversion of /boot/bootcode.bin to /usr/share/rpikernelhack/bootcode.bin by rpikernelhack' Removing 'diversion of /boot/start4.elf to /usr/share/rpikernelhack/start4.elf by rpikernelhack' Removing 'diversion of /boot/start4cd.elf to /usr/share/rpikernelhack/start4cd.elf by rpikernelhack' Removing 'diversion of /boot/start4db.elf to /usr/share/rpikernelhack/start4db.elf by rpikernelhack' Removing 'diversion of /boot/start4x.elf to /usr/share/rpikernelhack/start4x.elf by rpikernelhack' Removing 'diversion of /boot/fixup4.dat to /usr/share/rpikernelhack/fixup4.dat by rpikernelhack' Removing 'diversion of /boot/fixup4cd.dat to /usr/share/rpikernelhack/fixup4cd.dat by rpikernelhack' Removing 'diversion of /boot/fixup4db.dat to /usr/share/rpikernelhack/fixup4db.dat by rpikernelhack' Removing 'diversion of /boot/fixup4x.dat to /usr/share/rpikernelhack/fixup4x.dat by rpikernelhack' Removing 'diversion of /boot/LICENCE.broadcom to /usr/share/rpikernelhack/LICENCE.broadcom by rpikernelhack' Setting up libtimedate-perl (2.3000-2+deb10u1) ... Setting up libraspberrypi0 (1.20200212-1) ... Setting up libcomerr2:armhf (1.44.5-1+deb10u3) ... Setting up exim4-config (4.92-8+deb10u3) ... Setting up libpam-systemd:armhf (241-7~deb10u3+rpi1) ... Setting up libcryptsetup12:armhf (2:2.1.0-5+deb10u2) ... Setting up libboost-system1.67.0:armhf (1.67.0-13+deb10u1) ... Setting up openssl (1.1.1d-0+deb10u2+rpt1) ... Setting up libtinfo5:armhf (6.1+20181013-2+deb10u2) ... Setting up libdrm-common (2.4.100-4+rpi1~bpo10+1) ... Setting up libxmuu1:armhf (2:1.1.2-2+b3) ... Setting up guile-2.2-libs:armhf (2.2.4+1-2+deb10u1) ... Setting up ncurses-term (6.1+20181013-2+deb10u2) ... Setting up libgnutls-dane0:armhf (3.6.7-4+deb10u3) ... Setting up exim4-base (4.92-8+deb10u3) ... Setting up openssh-client (1:7.9p1-10+deb10u2) ... Setting up e2fsprogs (1.44.5-1+deb10u3) ... update-initramfs: deferring update (trigger activated) Setting up libncurses5:armhf (6.1+20181013-2+deb10u2) ... Setting up libraspberrypi-bin (1.20200212-1) ... Setting up libpython2.7-stdlib:armhf (2.7.16-2+deb10u1) ... Setting up libdrm2:armhf (2.4.100-4+rpi1~bpo10+1) ... Setting up libncursesw5:armhf (6.1+20181013-2+deb10u2) ... Setting up initramfs-tools-core (0.133+deb10u1) ... Setting up exim4-daemon-light (4.92-8+deb10u3) ... Updating GnuTLS DH parameter file Setting up openssh-sftp-server (1:7.9p1-10+deb10u2) ... Setting up libpython2.7:armhf (2.7.16-2+deb10u1) ... Setting up initramfs-tools (0.133+deb10u1) ... update-initramfs: deferring update (trigger activated) Setting up openssh-server (1:7.9p1-10+deb10u2) ... rescue-ssh.target is a disabled or a static unit, not starting it. Setting up e2fsprogs-l10n (1.44.5-1+deb10u3) ... Processing triggers for systemd (241-7~deb10u3+rpi1) ... Processing triggers for man-db (2.8.5-2) ... Processing triggers for ntp (1:4.2.8p12+dfsg-4) ... Processing triggers for dbus (1.12.16-1) ... Processing triggers for install-info (6.5.0.dfsg.1-4+b1) ... Processing triggers for libc-bin (2.28-10+rpi1) ... Processing triggers for initramfs-tools (0.133+deb10u1) ... ```
apt install --yes python3 python3-dev virtualenv qt5-default build-essential ```bash root@raspberrypi:~# apt install --yes python3 python3-dev virtualenv qt5-default build-essential Reading package lists... Done Building dependency tree Reading state information... Done The following packages were automatically installed and are no longer required: gnupg-agent libncurses5 libperl5.24 rename tcpd Use 'apt autoremove' to remove them. The following additional packages will be installed: adwaita-icon-theme at-spi2-core binutils binutils-arm-linux-gnueabihf binutils-common cpp cpp-8 dbus-user-session dconf-gsettings-backend dconf-service dh-python dpkg-dev fakeroot fontconfig fontconfig-config fonts-dejavu-core g++ g++-8 gcc gcc-8 glib-networking glib-networking-common glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan5 libatk-bridge2.0-0 libatk1.0-0 libatk1.0-data libatspi2.0-0 libavahi-client3 libavahi-common-data libavahi-common3 libbinutils libc-dev-bin libc6-dev libcairo-gobject2 libcairo2 libcc1-0 libcolord2 libcroco3 libcups2 libdatrie1 libdconf1 libdouble-conversion1 libdpkg-perl libdrm-amdgpu1 libdrm-nouveau2 libdrm-radeon1 libegl-dev libegl-mesa0 libegl1 libepoxy0 libevdev2 libexpat1-dev libfakeroot libfile-fcntllock-perl libfl2 libfontconfig1 libfreetype6 libgbm1 libgcc-8-dev libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl-dev libgl1 libgl1-mesa-dri libglapi-mesa libgles-dev libgles1 libgles2 libgles2-mesa-dev libglib2.0-0 libglib2.0-data libglvnd0 libglx-dev libglx-mesa0 libglx0 libgomp1 libgraphite2-3 libgtk-3-0 libgtk-3-bin libgtk-3-common libgudev-1.0-0 libharfbuzz0b libice6 libicu63 libinput-bin libinput10 libisl19 libjbig0 libjpeg62-turbo libjson-glib-1.0-0 libjson-glib-1.0-common liblcms2-2 libllvm9 libmpc3 libmpdec2 libmpfr6 libmtdev1 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpcre2-16-0 libpixman-1-0 libproxy1v5 libpthread-stubs0-dev libpython3-dev libpython3-stdlib libpython3.7 libpython3.7-dev libpython3.7-minimal libpython3.7-stdlib libqt5concurrent5 libqt5core5a libqt5dbus5 libqt5gui5 libqt5network5 libqt5opengl5 libqt5opengl5-dev libqt5printsupport5 libqt5sql5 libqt5sql5-sqlite libqt5svg5 libqt5test5 libqt5widgets5 libqt5xml5 librest-0.7-0 librsvg2-2 librsvg2-common libsensors-config libsensors5 libsm6 libsoup-gnome2.4-1 libsoup2.4-1 libstdc++-8-dev libthai-data libthai0 libtiff5 libubsan1 libvulkan-dev libvulkan1 libwacom-bin libwacom-common libwacom2 libwayland-client0 libwayland-cursor0 libwayland-egl1 libwayland-server0 libwebp6 libx11-dev libx11-xcb1 libxau-dev libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-util0 libxcb-xfixes0 libxcb-xinerama0 libxcb-xkb1 libxcb1-dev libxcomposite1 libxcursor1 libxdamage1 libxdmcp-dev libxext-dev libxfixes3 libxi6 libxinerama1 libxkbcommon-x11-0 libxkbcommon0 libxml2 libxrandr2 libxrender1 libxshmfence1 libxtst6 libxxf86vm1 linux-libc-dev make manpages manpages-dev patch python-pip-whl python3-distutils python3-lib2to3 python3-minimal python3-pkg-resources python3-virtualenv python3.7 python3.7-dev python3.7-minimal qt5-gtk-platformtheme qt5-qmake qt5-qmake-bin qtbase5-dev qtbase5-dev-tools qtchooser qttranslations5-l10n shared-mime-info x11-common x11proto-core-dev x11proto-dev x11proto-xext-dev xdg-user-dirs xkb-data xorg-sgml-doctools xtrans-dev Suggested packages: binutils-doc cpp-doc gcc-8-locales debian-keyring gcc-8-doc libstdc++6-8-dbg gcc-multilib autoconf automake libtool flex bison gdb gcc-doc libgcc1-dbg libgomp1-dbg libitm1-dbg libatomic1-dbg libasan5-dbg liblsan0-dbg libtsan0-dbg libubsan1-dbg libmpx2-dbg libquadmath0-dbg glibc-doc colord cups-common git bzr gvfs liblcms2-utils qt5-image-formats-plugins qtwayland5 librsvg2-bin lm-sensors libstdc++-8-doc libx11-doc libxcb-doc libxext-doc make-doc ed diffutils-doc python3-doc python3-tk python3-venv python3-setuptools python3.7-venv python3.7-doc binfmt-support default-libmysqlclient-dev firebird-dev libegl1-mesa-dev libgl1-mesa-dev libpq-dev libsqlite3-dev unixodbc-dev The following NEW packages will be installed: adwaita-icon-theme at-spi2-core binutils binutils-arm-linux-gnueabihf binutils-common build-essential cpp cpp-8 dbus-user-session dconf-gsettings-backend dconf-service dh-python dpkg-dev fakeroot fontconfig fontconfig-config fonts-dejavu-core g++ g++-8 gcc gcc-8 glib-networking glib-networking-common glib-networking-services gsettings-desktop-schemas gtk-update-icon-cache hicolor-icon-theme libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan5 libatk-bridge2.0-0 libatk1.0-0 libatk1.0-data libatspi2.0-0 libavahi-client3 libavahi-common-data libavahi-common3 libbinutils libc-dev-bin libc6-dev libcairo-gobject2 libcairo2 libcc1-0 libcolord2 libcroco3 libcups2 libdatrie1 libdconf1 libdouble-conversion1 libdpkg-perl libdrm-amdgpu1 libdrm-nouveau2 libdrm-radeon1 libegl-dev libegl-mesa0 libegl1 libepoxy0 libevdev2 libexpat1-dev libfakeroot libfile-fcntllock-perl libfl2 libfontconfig1 libfreetype6 libgbm1 libgcc-8-dev libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-bin libgdk-pixbuf2.0-common libgl-dev libgl1 libgl1-mesa-dri libglapi-mesa libgles-dev libgles1 libgles2 libgles2-mesa-dev libglib2.0-0 libglib2.0-data libglvnd0 libglx-dev libglx-mesa0 libglx0 libgomp1 libgraphite2-3 libgtk-3-0 libgtk-3-bin libgtk-3-common libgudev-1.0-0 libharfbuzz0b libice6 libicu63 libinput-bin libinput10 libisl19 libjbig0 libjpeg62-turbo libjson-glib-1.0-0 libjson-glib-1.0-common liblcms2-2 libllvm9 libmpc3 libmpdec2 libmpfr6 libmtdev1 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0 libpcre2-16-0 libpixman-1-0 libproxy1v5 libpthread-stubs0-dev libpython3-dev libpython3-stdlib libpython3.7 libpython3.7-dev libpython3.7-minimal libpython3.7-stdlib libqt5concurrent5 libqt5core5a libqt5dbus5 libqt5gui5 libqt5network5 libqt5opengl5 libqt5opengl5-dev libqt5printsupport5 libqt5sql5 libqt5sql5-sqlite libqt5svg5 libqt5test5 libqt5widgets5 libqt5xml5 librest-0.7-0 librsvg2-2 librsvg2-common libsensors-config libsensors5 libsm6 libsoup-gnome2.4-1 libsoup2.4-1 libstdc++-8-dev libthai-data libthai0 libtiff5 libubsan1 libvulkan-dev libvulkan1 libwacom-bin libwacom-common libwacom2 libwayland-client0 libwayland-cursor0 libwayland-egl1 libwayland-server0 libwebp6 libx11-dev libx11-xcb1 libxau-dev libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-present0 libxcb-randr0 libxcb-render-util0 libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-util0 libxcb-xfixes0 libxcb-xinerama0 libxcb-xkb1 libxcb1-dev libxcomposite1 libxcursor1 libxdamage1 libxdmcp-dev libxext-dev libxfixes3 libxi6 libxinerama1 libxkbcommon-x11-0 libxkbcommon0 libxml2 libxrandr2 libxrender1 libxshmfence1 libxtst6 libxxf86vm1 linux-libc-dev make manpages manpages-dev patch python-pip-whl python3 python3-dev python3-distutils python3-lib2to3 python3-minimal python3-pkg-resources python3-virtualenv python3.7 python3.7-dev python3.7-minimal qt5-default qt5-gtk-platformtheme qt5-qmake qt5-qmake-bin qtbase5-dev qtbase5-dev-tools qtchooser qttranslations5-l10n shared-mime-info virtualenv x11-common x11proto-core-dev x11proto-dev x11proto-xext-dev xdg-user-dirs xkb-data xorg-sgml-doctools xtrans-dev 0 upgraded, 227 newly installed, 0 to remove and 0 not upgraded. Need to get 173 MB of archives. After this operation, 1,026 MB of additional disk space will be used. Get:1 http://archive.raspberrypi.org/debian buster/main armhf libglvnd0 armhf 1.3.0-7~bpo10+1 [53.7 kB] Get:2 http://archive.raspbian.org/raspbian buster/main armhf libdouble-conversion1 armhf 3.1.0-3 [38.5 kB] Get:3 http://archive.raspberrypi.org/debian buster/main armhf libgbm1 armhf 19.3.2-1~bpo10+1~rpt1 [67.0 kB] Get:4 http://archive.raspbian.org/raspbian buster/main armhf libglib2.0-0 armhf 2.58.3-2+deb10u2 [1,078 kB] Get:5 http://archive.raspberrypi.org/debian buster/main armhf libglapi-mesa armhf 19.3.2-1~bpo10+1~rpt1 [78.0 kB] Get:6 http://archive.raspberrypi.org/debian buster/main armhf libegl-mesa0 armhf 19.3.2-1~bpo10+1~rpt1 [121 kB] Get:7 http://archive.raspberrypi.org/debian buster/main armhf libegl1 armhf 1.3.0-7~bpo10+1 [28.5 kB] Get:8 http://archive.raspberrypi.org/debian buster/main armhf libgles2 armhf 1.3.0-7~bpo10+1 [20.1 kB] Get:9 http://archive.raspberrypi.org/debian buster/main armhf gtk-update-icon-cache armhf 3.24.5-1+rpt2 [80.5 kB] Get:10 http://archive.raspberrypi.org/debian buster/main armhf libpixman-1-0 armhf 0.36.0-1+rpt1 [476 kB] Get:11 http://archive.raspbian.org/raspbian buster/main armhf libicu63 armhf 63.1-6+deb10u1 [7,973 kB] Get:12 http://archive.raspberrypi.org/debian buster/main armhf libcairo2 armhf 1.16.0-4+rpt1 [600 kB] Get:13 http://archive.raspberrypi.org/debian buster/main armhf libcairo-gobject2 armhf 1.16.0-4+rpt1 [123 kB] Get:14 http://archive.raspberrypi.org/debian buster/main armhf libdrm-amdgpu1 armhf 2.4.100-4+rpi1~bpo10+1 [26.9 kB] Get:15 http://archive.raspberrypi.org/debian buster/main armhf libdrm-nouveau2 armhf 2.4.100-4+rpi1~bpo10+1 [24.8 kB] Get:16 http://archive.raspberrypi.org/debian buster/main armhf libdrm-radeon1 armhf 2.4.100-4+rpi1~bpo10+1 [29.0 kB] Get:17 http://archive.raspberrypi.org/debian buster/main armhf libllvm9 armhf 1:9.0.1-6+rpi1~bpo10+1 [13.1 MB] Get:18 http://archive.raspbian.org/raspbian buster/main armhf libpcre2-16-0 armhf 10.32-5 [175 kB] Get:19 http://archive.raspbian.org/raspbian buster/main armhf libqt5core5a armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [1,643 kB] Get:20 http://archive.raspbian.org/raspbian buster/main armhf libfreetype6 armhf 2.9.1-3+deb10u1 [317 kB] Get:21 http://archive.raspbian.org/raspbian buster/main armhf fonts-dejavu-core all 2.37-1 [1,068 kB] Get:22 http://archive.raspbian.org/raspbian buster/main armhf fontconfig-config all 2.13.1-2 [280 kB] Get:23 http://archive.raspbian.org/raspbian buster/main armhf libfontconfig1 armhf 2.13.1-2 [327 kB] Get:24 http://archive.raspbian.org/raspbian buster/main armhf fontconfig armhf 2.13.1-2 [404 kB] Get:25 http://archive.raspbian.org/raspbian buster/main armhf libwayland-server0 armhf 1.16.0-1 [26.0 kB] Get:26 http://archive.raspbian.org/raspbian buster/main armhf libwayland-client0 armhf 1.16.0-1 [21.2 kB] Get:27 http://archive.raspbian.org/raspbian buster/main armhf libx11-xcb1 armhf 2:1.6.7-1 [190 kB] Get:28 http://archive.raspbian.org/raspbian buster/main armhf libxcb-dri2-0 armhf 1.13.1-2 [100 kB] Get:29 http://archive.raspbian.org/raspbian buster/main armhf libxcb-dri3-0 armhf 1.13.1-2 [100 kB] Get:30 http://archive.raspbian.org/raspbian buster/main armhf libxcb-present0 armhf 1.13.1-2 [99.1 kB] Get:31 http://archive.raspberrypi.org/debian buster/main armhf libgl1-mesa-dri armhf 19.3.2-1~bpo10+1~rpt1 [5,550 kB] Get:32 http://archive.raspberrypi.org/debian buster/main armhf libglx-mesa0 armhf 19.3.2-1~bpo10+1~rpt1 [166 kB] Get:33 http://archive.raspberrypi.org/debian buster/main armhf libglx0 armhf 1.3.0-7~bpo10+1 [25.8 kB] Get:34 http://archive.raspberrypi.org/debian buster/main armhf libgl1 armhf 1.3.0-7~bpo10+1 [104 kB] Get:35 http://archive.raspberrypi.org/debian buster/main armhf libglx-dev armhf 1.3.0-7~bpo10+1 [16.4 kB] Get:36 http://archive.raspberrypi.org/debian buster/main armhf libgl-dev armhf 1.3.0-7~bpo10+1 [100 kB] Get:37 http://archive.raspberrypi.org/debian buster/main armhf libegl-dev armhf 1.3.0-7~bpo10+1 [19.3 kB] Get:38 http://archive.raspberrypi.org/debian buster/main armhf libgles1 armhf 1.3.0-7~bpo10+1 [13.1 kB] Get:39 http://archive.raspberrypi.org/debian buster/main armhf libgles-dev armhf 1.3.0-7~bpo10+1 [50.4 kB] Get:40 http://archive.raspbian.org/raspbian buster/main armhf libxcb-sync1 armhf 1.13.1-2 [102 kB] Get:41 http://archive.raspberrypi.org/debian buster/main armhf libgles2-mesa-dev armhf 19.3.2-1~bpo10+1~rpt1 [49.2 kB] Get:42 http://archive.raspbian.org/raspbian buster/main armhf libxcb-xfixes0 armhf 1.13.1-2 [103 kB] Get:43 http://archive.raspberrypi.org/debian buster/main armhf libgtk-3-common all 3.24.5-1+rpt2 [3,680 kB] Get:44 http://archive.raspbian.org/raspbian buster/main armhf libxshmfence1 armhf 1.3-1 [8,636 B] Get:45 http://archive.raspbian.org/raspbian buster/main armhf libgraphite2-3 armhf 1.3.13-7 [69.6 kB] Get:46 http://archive.raspbian.org/raspbian buster/main armhf libharfbuzz0b armhf 2.3.1-1 [1,144 kB] Get:47 http://archive.raspbian.org/raspbian buster/main armhf x11-common all 1:7.7+19 [251 kB] Get:48 http://archive.raspbian.org/raspbian buster/main armhf libice6 armhf 2:1.0.9-2 [51.6 kB] Get:49 http://archive.raspbian.org/raspbian buster/main armhf libevdev2 armhf 1.6.0+dfsg-1 [24.9 kB] Get:50 http://archive.raspbian.org/raspbian buster/main armhf libmtdev1 armhf 1.1.5-1+b2 [21.2 kB] Get:51 http://archive.raspbian.org/raspbian buster/main armhf libgudev-1.0-0 armhf 232-2+rpi1 [11.8 kB] Get:52 http://archive.raspbian.org/raspbian buster/main armhf libwacom-common all 0.32-1 [39.1 kB] Get:53 http://archive.raspbian.org/raspbian buster/main armhf libwacom2 armhf 0.32-1 [16.1 kB] Get:54 http://archive.raspbian.org/raspbian buster/main armhf libinput-bin armhf 1.12.6-2 [16.4 kB] Get:55 http://archive.raspbian.org/raspbian buster/main armhf libinput10 armhf 1.12.6-2 [90.5 kB] Get:56 http://archive.raspbian.org/raspbian buster/main armhf libjpeg62-turbo armhf 1:1.5.2-2+b1 [110 kB] Get:57 http://archive.raspbian.org/raspbian buster/main armhf libqt5dbus5 armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [198 kB] Get:58 http://archive.raspbian.org/raspbian buster/main armhf libqt5network5 armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [558 kB] Get:59 http://archive.raspbian.org/raspbian buster/main armhf libsm6 armhf 2:1.2.3-1 [32.9 kB] Get:60 http://archive.raspbian.org/raspbian buster/main armhf libxcb-icccm4 armhf 0.4.1-1.1 [26.3 kB] Get:61 http://archive.raspbian.org/raspbian buster/main armhf libxcb-shm0 armhf 1.13.1-2 [99.3 kB] Get:62 http://archive.raspbian.org/raspbian buster/main armhf libxcb-util0 armhf 0.3.8-3+b2 [21.9 kB] Get:63 http://archive.raspbian.org/raspbian buster/main armhf libxcb-image0 armhf 0.4.0-1+b2 [23.3 kB] Get:64 http://archive.raspbian.org/raspbian buster/main armhf libxcb-keysyms1 armhf 0.4.0-1+b2 [15.9 kB] Get:65 http://archive.raspbian.org/raspbian buster/main armhf libxcb-randr0 armhf 1.13.1-2 [109 kB] Get:66 http://archive.raspbian.org/raspbian buster/main armhf libxcb-render0 armhf 1.13.1-2 [108 kB] Get:67 http://archive.raspbian.org/raspbian buster/main armhf libxcb-render-util0 armhf 0.3.9-1+b1 [17.3 kB] Get:68 http://archive.raspbian.org/raspbian buster/main armhf libxcb-shape0 armhf 1.13.1-2 [99.5 kB] Get:69 http://archive.raspbian.org/raspbian buster/main armhf libxcb-xinerama0 armhf 1.13.1-2 [98.8 kB] Get:70 http://archive.raspbian.org/raspbian buster/main armhf libxcb-xkb1 armhf 1.13.1-2 [120 kB] Get:71 http://archive.raspbian.org/raspbian buster/main armhf libxi6 armhf 2:1.7.9-1 [77.8 kB] Get:72 http://archive.raspbian.org/raspbian buster/main armhf xkb-data all 2.26-2 [681 kB] Get:73 http://archive.raspbian.org/raspbian buster/main armhf libxkbcommon0 armhf 0.8.2-1 [110 kB] Get:74 http://archive.raspbian.org/raspbian buster/main armhf libxkbcommon-x11-0 armhf 0.8.2-1 [38.1 kB] Get:75 http://archive.raspbian.org/raspbian buster/main armhf libxrender1 armhf 1:0.9.10-1 [29.9 kB] Get:76 http://archive.raspbian.org/raspbian buster/main armhf libqt5gui5 armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [2,188 kB] Get:77 http://archive.raspbian.org/raspbian buster/main armhf libqt5widgets5 armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [1,941 kB] Get:78 http://archive.raspbian.org/raspbian buster/main armhf libqt5svg5 armhf 5.11.3-2 [109 kB] Get:79 http://archive.raspberrypi.org/debian buster/main armhf libgtk-3-0 armhf 3.24.5-1+rpt2 [2,136 kB] Get:80 http://archive.raspbian.org/raspbian buster/main armhf libpython3.7-minimal armhf 3.7.3-2+deb10u1 [583 kB] Get:81 http://archive.raspbian.org/raspbian buster/main armhf python3.7-minimal armhf 3.7.3-2+deb10u1 [1,463 kB] Get:82 http://archive.raspbian.org/raspbian buster/main armhf python3-minimal armhf 3.7.3-1 [36.6 kB] Get:83 http://archive.raspbian.org/raspbian buster/main armhf libmpdec2 armhf 2.4.2-2 [67.2 kB] Get:84 http://archive.raspbian.org/raspbian buster/main armhf libpython3.7-stdlib armhf 3.7.3-2+deb10u1 [1,662 kB] Get:85 http://archive.raspbian.org/raspbian buster/main armhf python3.7 armhf 3.7.3-2+deb10u1 [330 kB] Get:86 http://archive.raspbian.org/raspbian buster/main armhf libpython3-stdlib armhf 3.7.3-1 [20.0 kB] Get:87 http://archive.raspbian.org/raspbian buster/main armhf python3 armhf 3.7.3-1 [61.5 kB] Get:88 http://archive.raspbian.org/raspbian buster/main armhf manpages all 4.16-2 [1,295 kB] Get:89 http://archive.raspberrypi.org/debian buster/main armhf libgtk-3-bin armhf 3.24.5-1+rpt2 [111 kB] Get:90 http://archive.raspbian.org/raspbian buster/main armhf hicolor-icon-theme all 0.17-2 [11.4 kB] Get:91 http://archive.raspbian.org/raspbian buster/main armhf libjbig0 armhf 2.1-3.1+b2 [27.6 kB] Get:92 http://archive.raspbian.org/raspbian buster/main armhf libwebp6 armhf 0.6.1-2 [228 kB] Get:93 http://archive.raspbian.org/raspbian buster/main armhf libtiff5 armhf 4.1.0+git191117-2~deb10u1 [249 kB] Get:94 http://archive.raspberrypi.org/debian buster/main armhf python-pip-whl all 18.1-5+rpt1 [1,591 kB] Get:95 http://archive.raspbian.org/raspbian buster/main armhf libxml2 armhf 2.9.4+dfsg1-7+b3 [571 kB] Get:96 http://archive.raspbian.org/raspbian buster/main armhf shared-mime-info armhf 1.10-1 [762 kB] Get:97 http://archive.raspbian.org/raspbian buster/main armhf libgdk-pixbuf2.0-common all 2.38.1+dfsg-1 [316 kB] Get:98 http://archive.raspbian.org/raspbian buster/main armhf libgdk-pixbuf2.0-0 armhf 2.38.1+dfsg-1 [157 kB] Get:99 http://archive.raspbian.org/raspbian buster/main armhf libcroco3 armhf 0.6.12-3 [132 kB] Get:100 http://archive.raspbian.org/raspbian buster/main armhf libthai-data all 0.1.28-2 [170 kB] Get:101 http://archive.raspbian.org/raspbian buster/main armhf libdatrie1 armhf 0.2.12-2 [35.9 kB] Get:102 http://archive.raspbian.org/raspbian buster/main armhf libthai0 armhf 0.1.28-2 [50.9 kB] Get:103 http://archive.raspbian.org/raspbian buster/main armhf libpango-1.0-0 armhf 1.42.4-7~deb10u1 [168 kB] Get:104 http://archive.raspbian.org/raspbian buster/main armhf libpangoft2-1.0-0 armhf 1.42.4-7~deb10u1 [62.0 kB] Get:105 http://archive.raspbian.org/raspbian buster/main armhf libpangocairo-1.0-0 armhf 1.42.4-7~deb10u1 [51.7 kB] Get:106 http://archive.raspbian.org/raspbian buster/main armhf librsvg2-2 armhf 2.44.10-2.1+rpi1 [967 kB] Get:107 http://archive.raspbian.org/raspbian buster/main armhf librsvg2-common armhf 2.44.10-2.1+rpi1 [23.1 kB] Get:108 http://archive.raspbian.org/raspbian buster/main armhf adwaita-icon-theme all 3.30.1-1 [11.7 MB] Get:109 http://archive.raspbian.org/raspbian buster/main armhf libatspi2.0-0 armhf 2.30.0-7 [54.3 kB] Get:110 http://archive.raspbian.org/raspbian buster/main armhf libxtst6 armhf 2:1.2.3-1 [26.3 kB] Get:111 http://archive.raspbian.org/raspbian buster/main armhf at-spi2-core armhf 2.30.0-7 [64.6 kB] Get:112 http://archive.raspbian.org/raspbian buster/main armhf binutils-common armhf 2.31.1-16+rpi2 [2,075 kB] Get:113 http://archive.raspbian.org/raspbian buster/main armhf libbinutils armhf 2.31.1-16+rpi2 [302 kB] Get:114 http://archive.raspbian.org/raspbian buster/main armhf libfl2 armhf 2.6.4-6.2 [103 kB] Get:115 http://archive.raspbian.org/raspbian buster/main armhf binutils-arm-linux-gnueabihf armhf 2.31.1-16+rpi2 [1,814 kB] Get:116 http://archive.raspbian.org/raspbian buster/main armhf binutils armhf 2.31.1-16+rpi2 [57.0 kB] Get:117 http://archive.raspbian.org/raspbian buster/main armhf libc-dev-bin armhf 2.28-10+rpi1 [266 kB] Get:118 http://archive.raspbian.org/raspbian buster/main armhf linux-libc-dev armhf 4.18.20-2+rpi1 [1,546 kB] Get:119 http://archive.raspbian.org/raspbian buster/main armhf libc6-dev armhf 2.28-10+rpi1 [2,113 kB] Get:120 http://archive.raspbian.org/raspbian buster/main armhf libisl19 armhf 0.20-2 [439 kB] Get:121 http://archive.raspbian.org/raspbian buster/main armhf libmpfr6 armhf 4.0.2-1 [723 kB] Get:122 http://archive.raspbian.org/raspbian buster/main armhf libmpc3 armhf 1.1.0-1 [32.1 kB] Get:123 http://archive.raspbian.org/raspbian buster/main armhf cpp-8 armhf 8.3.0-6+rpi1 [6,787 kB] Get:124 http://archive.raspbian.org/raspbian buster/main armhf cpp armhf 4:8.3.0-1+rpi2 [19.6 kB] Get:125 http://archive.raspbian.org/raspbian buster/main armhf libcc1-0 armhf 8.3.0-6+rpi1 [37.9 kB] Get:126 http://archive.raspbian.org/raspbian buster/main armhf libgomp1 armhf 8.3.0-6+rpi1 [64.3 kB] Get:127 http://archive.raspbian.org/raspbian buster/main armhf libasan5 armhf 8.3.0-6+rpi1 [317 kB] Get:128 http://archive.raspbian.org/raspbian buster/main armhf libubsan1 armhf 8.3.0-6+rpi1 [103 kB] Get:129 http://archive.raspbian.org/raspbian buster/main armhf libgcc-8-dev armhf 8.3.0-6+rpi1 [595 kB] Get:130 http://archive.raspbian.org/raspbian buster/main armhf gcc-8 armhf 8.3.0-6+rpi1 [7,223 kB] Get:131 http://archive.raspbian.org/raspbian buster/main armhf gcc armhf 4:8.3.0-1+rpi2 [5,200 B] Get:132 http://archive.raspbian.org/raspbian buster/main armhf libstdc++-8-dev armhf 8.3.0-6+rpi1 [1,545 kB] Get:133 http://archive.raspbian.org/raspbian buster/main armhf g++-8 armhf 8.3.0-6+rpi1 [7,464 kB] Get:134 http://archive.raspbian.org/raspbian buster/main armhf g++ armhf 4:8.3.0-1+rpi2 [1,632 B] Get:135 http://archive.raspbian.org/raspbian buster/main armhf make armhf 4.2.1-1.2 [321 kB] Get:136 http://archive.raspbian.org/raspbian buster/main armhf libdpkg-perl all 1.19.7 [1,414 kB] Get:137 http://archive.raspbian.org/raspbian buster/main armhf patch armhf 2.7.6-3+deb10u1 [115 kB] Get:138 http://archive.raspbian.org/raspbian buster/main armhf dpkg-dev all 1.19.7 [1,773 kB] Get:139 http://archive.raspbian.org/raspbian buster/main armhf build-essential armhf 12.6 [7,568 B] Get:140 http://archive.raspbian.org/raspbian buster/main armhf dbus-user-session armhf 1.12.16-1 [93.4 kB] Get:141 http://archive.raspbian.org/raspbian buster/main armhf libdconf1 armhf 0.30.1-2 [36.3 kB] Get:142 http://archive.raspbian.org/raspbian buster/main armhf dconf-service armhf 0.30.1-2 [33.3 kB] Get:143 http://archive.raspbian.org/raspbian buster/main armhf dconf-gsettings-backend armhf 0.30.1-2 [24.7 kB] Get:144 http://archive.raspbian.org/raspbian buster/main armhf python3-lib2to3 all 3.7.3-1 [76.7 kB] Get:145 http://archive.raspbian.org/raspbian buster/main armhf python3-distutils all 3.7.3-1 [142 kB] Get:146 http://archive.raspbian.org/raspbian buster/main armhf dh-python all 3.20190308 [99.3 kB] Get:147 http://archive.raspbian.org/raspbian buster/main armhf libfakeroot armhf 1.23-1 [43.3 kB] Get:148 http://archive.raspbian.org/raspbian buster/main armhf fakeroot armhf 1.23-1 [85.2 kB] Get:149 http://archive.raspbian.org/raspbian buster/main armhf libproxy1v5 armhf 0.4.15-5 [49.8 kB] Get:150 http://archive.raspbian.org/raspbian buster/main armhf glib-networking-common all 2.58.0-2 [59.3 kB] Get:151 http://archive.raspbian.org/raspbian buster/main armhf glib-networking-services armhf 2.58.0-2 [13.0 kB] Get:152 http://archive.raspbian.org/raspbian buster/main armhf gsettings-desktop-schemas all 3.28.1-1 [529 kB] Get:153 http://archive.raspbian.org/raspbian buster/main armhf glib-networking armhf 2.58.0-2 [47.7 kB] Get:154 http://archive.raspbian.org/raspbian buster/main armhf libalgorithm-diff-perl all 1.19.03-2 [47.9 kB] Get:155 http://archive.raspbian.org/raspbian buster/main armhf libalgorithm-diff-xs-perl armhf 0.04-5+b1 [11.4 kB] Get:156 http://archive.raspbian.org/raspbian buster/main armhf libalgorithm-merge-perl all 0.08-3 [12.7 kB] Get:157 http://archive.raspbian.org/raspbian buster/main armhf libatk1.0-data all 2.30.0-2 [145 kB] Get:158 http://archive.raspbian.org/raspbian buster/main armhf libatk1.0-0 armhf 2.30.0-2 [42.7 kB] Get:159 http://archive.raspbian.org/raspbian buster/main armhf libatk-bridge2.0-0 armhf 2.30.0-5 [51.1 kB] Get:160 http://archive.raspbian.org/raspbian buster/main armhf libavahi-common-data armhf 0.7-4+b1 [122 kB] Get:161 http://archive.raspbian.org/raspbian buster/main armhf libavahi-common3 armhf 0.7-4+b1 [51.1 kB] Get:162 http://archive.raspbian.org/raspbian buster/main armhf libavahi-client3 armhf 0.7-4+b1 [54.0 kB] Get:163 http://archive.raspbian.org/raspbian buster/main armhf liblcms2-2 armhf 2.9-3 [116 kB] Get:164 http://archive.raspbian.org/raspbian buster/main armhf libcolord2 armhf 1.4.3-4 [119 kB] Get:165 http://archive.raspbian.org/raspbian buster/main armhf libcups2 armhf 2.2.10-6+deb10u2 [287 kB] Get:166 http://archive.raspbian.org/raspbian buster/main armhf libxcb-glx0 armhf 1.13.1-2 [114 kB] Get:167 http://archive.raspbian.org/raspbian buster/main armhf libxfixes3 armhf 1:5.0.3-1 [20.6 kB] Get:168 http://archive.raspbian.org/raspbian buster/main armhf libxdamage1 armhf 1:1.1.4-3+b3 [14.3 kB] Get:169 http://archive.raspbian.org/raspbian buster/main armhf libxxf86vm1 armhf 1:1.1.4-1+b2 [20.1 kB] Get:170 http://archive.raspbian.org/raspbian buster/main armhf libsensors-config all 1:3.5.0-3 [31.6 kB] Get:171 http://archive.raspbian.org/raspbian buster/main armhf libsensors5 armhf 1:3.5.0-3 [49.5 kB] Get:172 http://archive.raspbian.org/raspbian buster/main armhf xorg-sgml-doctools all 1:1.11-1 [21.9 kB] Get:173 http://archive.raspbian.org/raspbian buster/main armhf x11proto-dev all 2018.4-4 [251 kB] Get:174 http://archive.raspbian.org/raspbian buster/main armhf x11proto-core-dev all 2018.4-4 [3,128 B] Get:175 http://archive.raspbian.org/raspbian buster/main armhf libxau-dev armhf 1:1.0.8-1+b2 [22.4 kB] Get:176 http://archive.raspbian.org/raspbian buster/main armhf libxdmcp-dev armhf 1:1.1.2-3 [40.9 kB] Get:177 http://archive.raspbian.org/raspbian buster/main armhf xtrans-dev all 1.3.5-1 [100 kB] Get:178 http://archive.raspbian.org/raspbian buster/main armhf libpthread-stubs0-dev armhf 0.4-1 [5,344 B] Get:179 http://archive.raspbian.org/raspbian buster/main armhf libxcb1-dev armhf 1.13.1-2 [169 kB] Get:180 http://archive.raspbian.org/raspbian buster/main armhf libx11-dev armhf 2:1.6.7-1 [760 kB] Get:181 http://archive.raspbian.org/raspbian buster/main armhf libepoxy0 armhf 1.5.3-0.1 [167 kB] Get:182 http://archive.raspbian.org/raspbian buster/main armhf libexpat1-dev armhf 2.2.6-2+deb10u1 [127 kB] Get:183 http://archive.raspbian.org/raspbian buster/main armhf libfile-fcntllock-perl armhf 0.22-3+b4 [35.1 kB] Get:184 http://archive.raspbian.org/raspbian buster/main armhf libgdk-pixbuf2.0-bin armhf 2.38.1+dfsg-1 [23.0 kB] Get:185 http://archive.raspbian.org/raspbian buster/main armhf libglib2.0-data all 2.58.3-2+deb10u2 [1,110 kB] Get:186 http://archive.raspbian.org/raspbian buster/main armhf libjson-glib-1.0-common all 1.4.4-2 [52.3 kB] Get:187 http://archive.raspbian.org/raspbian buster/main armhf libjson-glib-1.0-0 armhf 1.4.4-2 [52.7 kB] Get:188 http://archive.raspbian.org/raspbian buster/main armhf libsoup2.4-1 armhf 2.64.2-2 [216 kB] Get:189 http://archive.raspbian.org/raspbian buster/main armhf libsoup-gnome2.4-1 armhf 2.64.2-2 [17.5 kB] Get:190 http://archive.raspbian.org/raspbian buster/main armhf librest-0.7-0 armhf 0.8.1-1 [27.8 kB] Get:191 http://archive.raspbian.org/raspbian buster/main armhf libwayland-cursor0 armhf 1.16.0-1 [13.0 kB] Get:192 http://archive.raspbian.org/raspbian buster/main armhf libwayland-egl1 armhf 1.16.0-1 [8,008 B] Get:193 http://archive.raspbian.org/raspbian buster/main armhf libxcomposite1 armhf 1:0.4.4-2 [16.1 kB] Get:194 http://archive.raspbian.org/raspbian buster/main armhf libxcursor1 armhf 1:1.1.15-2 [33.5 kB] Get:195 http://archive.raspbian.org/raspbian buster/main armhf libxinerama1 armhf 2:1.1.4-2 [17.3 kB] Get:196 http://archive.raspbian.org/raspbian buster/main armhf libxrandr2 armhf 2:1.5.1-1 [34.5 kB] Get:197 http://archive.raspbian.org/raspbian buster/main armhf libpython3.7 armhf 3.7.3-2+deb10u1 [1,252 kB] Get:198 http://archive.raspbian.org/raspbian buster/main armhf libpython3.7-dev armhf 3.7.3-2+deb10u1 [47.2 MB] Get:199 http://archive.raspbian.org/raspbian buster/main armhf libpython3-dev armhf 3.7.3-1 [20.1 kB] Get:200 http://archive.raspbian.org/raspbian buster/main armhf libqt5concurrent5 armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [55.9 kB] Get:201 http://archive.raspbian.org/raspbian buster/main armhf libqt5opengl5 armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [138 kB] Get:202 http://archive.raspbian.org/raspbian buster/main armhf libqt5printsupport5 armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [196 kB] Get:203 http://archive.raspbian.org/raspbian buster/main armhf libqt5sql5 armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [126 kB] Get:204 http://archive.raspbian.org/raspbian buster/main armhf libqt5test5 armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [133 kB] Get:205 http://archive.raspbian.org/raspbian buster/main armhf libqt5xml5 armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [112 kB] Get:206 http://archive.raspbian.org/raspbian buster/main armhf libvulkan1 armhf 1.1.97-2 [77.3 kB] Get:207 http://archive.raspbian.org/raspbian buster/main armhf libvulkan-dev armhf 1.1.97-2 [390 kB] Get:208 http://archive.raspbian.org/raspbian buster/main armhf x11proto-xext-dev all 2018.4-4 [3,128 B] Get:209 http://archive.raspbian.org/raspbian buster/main armhf libxext-dev armhf 2:1.3.3-1+b2 [102 kB] Get:210 http://archive.raspbian.org/raspbian buster/main armhf qt5-qmake-bin armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [779 kB] Get:211 http://archive.raspbian.org/raspbian buster/main armhf qtchooser armhf 66-2 [23.1 kB] Get:212 http://archive.raspbian.org/raspbian buster/main armhf qt5-qmake armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [213 kB] Get:213 http://archive.raspbian.org/raspbian buster/main armhf qtbase5-dev-tools armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [630 kB] Get:214 http://archive.raspbian.org/raspbian buster/main armhf qtbase5-dev armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [960 kB] Get:215 http://archive.raspbian.org/raspbian buster/main armhf libqt5opengl5-dev armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [63.9 kB] Get:216 http://archive.raspbian.org/raspbian buster/main armhf libqt5sql5-sqlite armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [67.4 kB] Get:217 http://archive.raspbian.org/raspbian buster/main armhf libwacom-bin armhf 0.32-1 [6,528 B] Get:218 http://archive.raspbian.org/raspbian buster/main armhf manpages-dev all 4.16-2 [2,232 kB] Get:219 http://archive.raspbian.org/raspbian buster/main armhf python3.7-dev armhf 3.7.3-2+deb10u1 [522 kB] Get:220 http://archive.raspbian.org/raspbian buster/main armhf python3-dev armhf 3.7.3-1 [1,264 B] Get:221 http://archive.raspbian.org/raspbian buster/main armhf python3-pkg-resources all 40.8.0-1 [153 kB] Get:222 http://archive.raspbian.org/raspbian buster/main armhf python3-virtualenv all 15.1.0+ds-2 [58.1 kB] Get:223 http://archive.raspbian.org/raspbian buster/main armhf qt5-default armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [48.4 kB] Get:224 http://archive.raspbian.org/raspbian buster/main armhf qt5-gtk-platformtheme armhf 5.11.3+dfsg1-1+rpi1+deb10u3 [128 kB] Get:225 http://archive.raspbian.org/raspbian buster/main armhf qttranslations5-l10n all 5.11.3-2 [1,501 kB] Get:226 http://archive.raspbian.org/raspbian buster/main armhf virtualenv all 15.1.0+ds-2 [20.1 kB] Get:227 http://archive.raspbian.org/raspbian buster/main armhf xdg-user-dirs armhf 0.17-2 [52.1 kB] Fetched 173 MB in 35s (4,988 kB/s) Extracting templates from packages: 100% Preconfiguring packages ... Selecting previously unselected package libdouble-conversion1:armhf. (Reading database ... 87180 files and directories currently installed.) Preparing to unpack .../00-libdouble-conversion1_3.1.0-3_armhf.deb ... Unpacking libdouble-conversion1:armhf (3.1.0-3) ... Selecting previously unselected package libglib2.0-0:armhf. Preparing to unpack .../01-libglib2.0-0_2.58.3-2+deb10u2_armhf.deb ... Unpacking libglib2.0-0:armhf (2.58.3-2+deb10u2) ... Selecting previously unselected package libicu63:armhf. Preparing to unpack .../02-libicu63_63.1-6+deb10u1_armhf.deb ... Unpacking libicu63:armhf (63.1-6+deb10u1) ... Selecting previously unselected package libpcre2-16-0:armhf. Preparing to unpack .../03-libpcre2-16-0_10.32-5_armhf.deb ... Unpacking libpcre2-16-0:armhf (10.32-5) ... Selecting previously unselected package libqt5core5a:armhf. Preparing to unpack .../04-libqt5core5a_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking libqt5core5a:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package libfreetype6:armhf. Preparing to unpack .../05-libfreetype6_2.9.1-3+deb10u1_armhf.deb ... Unpacking libfreetype6:armhf (2.9.1-3+deb10u1) ... Selecting previously unselected package fonts-dejavu-core. Preparing to unpack .../06-fonts-dejavu-core_2.37-1_all.deb ... Unpacking fonts-dejavu-core (2.37-1) ... Selecting previously unselected package fontconfig-config. Preparing to unpack .../07-fontconfig-config_2.13.1-2_all.deb ... Unpacking fontconfig-config (2.13.1-2) ... Selecting previously unselected package libfontconfig1:armhf. Preparing to unpack .../08-libfontconfig1_2.13.1-2_armhf.deb ... Unpacking libfontconfig1:armhf (2.13.1-2) ... Selecting previously unselected package fontconfig. Preparing to unpack .../09-fontconfig_2.13.1-2_armhf.deb ... Unpacking fontconfig (2.13.1-2) ... Selecting previously unselected package libglvnd0:armhf. Preparing to unpack .../10-libglvnd0_1.3.0-7~bpo10+1_armhf.deb ... Unpacking libglvnd0:armhf (1.3.0-7~bpo10+1) ... Selecting previously unselected package libwayland-server0:armhf. Preparing to unpack .../11-libwayland-server0_1.16.0-1_armhf.deb ... Unpacking libwayland-server0:armhf (1.16.0-1) ... Selecting previously unselected package libgbm1:armhf. Preparing to unpack .../12-libgbm1_19.3.2-1~bpo10+1~rpt1_armhf.deb ... Unpacking libgbm1:armhf (19.3.2-1~bpo10+1~rpt1) ... Selecting previously unselected package libglapi-mesa:armhf. Preparing to unpack .../13-libglapi-mesa_19.3.2-1~bpo10+1~rpt1_armhf.deb ... Unpacking libglapi-mesa:armhf (19.3.2-1~bpo10+1~rpt1) ... Selecting previously unselected package libwayland-client0:armhf. Preparing to unpack .../14-libwayland-client0_1.16.0-1_armhf.deb ... Unpacking libwayland-client0:armhf (1.16.0-1) ... Selecting previously unselected package libx11-xcb1:armhf. Preparing to unpack .../15-libx11-xcb1_2%3a1.6.7-1_armhf.deb ... Unpacking libx11-xcb1:armhf (2:1.6.7-1) ... Selecting previously unselected package libxcb-dri2-0:armhf. Preparing to unpack .../16-libxcb-dri2-0_1.13.1-2_armhf.deb ... Unpacking libxcb-dri2-0:armhf (1.13.1-2) ... Selecting previously unselected package libxcb-dri3-0:armhf. Preparing to unpack .../17-libxcb-dri3-0_1.13.1-2_armhf.deb ... Unpacking libxcb-dri3-0:armhf (1.13.1-2) ... Selecting previously unselected package libxcb-present0:armhf. Preparing to unpack .../18-libxcb-present0_1.13.1-2_armhf.deb ... Unpacking libxcb-present0:armhf (1.13.1-2) ... Selecting previously unselected package libxcb-sync1:armhf. Preparing to unpack .../19-libxcb-sync1_1.13.1-2_armhf.deb ... Unpacking libxcb-sync1:armhf (1.13.1-2) ... Selecting previously unselected package libxcb-xfixes0:armhf. Preparing to unpack .../20-libxcb-xfixes0_1.13.1-2_armhf.deb ... Unpacking libxcb-xfixes0:armhf (1.13.1-2) ... Selecting previously unselected package libxshmfence1:armhf. Preparing to unpack .../21-libxshmfence1_1.3-1_armhf.deb ... Unpacking libxshmfence1:armhf (1.3-1) ... Selecting previously unselected package libegl-mesa0:armhf. Preparing to unpack .../22-libegl-mesa0_19.3.2-1~bpo10+1~rpt1_armhf.deb ... Unpacking libegl-mesa0:armhf (19.3.2-1~bpo10+1~rpt1) ... Selecting previously unselected package libegl1:armhf. Preparing to unpack .../23-libegl1_1.3.0-7~bpo10+1_armhf.deb ... Unpacking libegl1:armhf (1.3.0-7~bpo10+1) ... Selecting previously unselected package libgles2:armhf. Preparing to unpack .../24-libgles2_1.3.0-7~bpo10+1_armhf.deb ... Unpacking libgles2:armhf (1.3.0-7~bpo10+1) ... Selecting previously unselected package libgraphite2-3:armhf. Preparing to unpack .../25-libgraphite2-3_1.3.13-7_armhf.deb ... Unpacking libgraphite2-3:armhf (1.3.13-7) ... Selecting previously unselected package libharfbuzz0b:armhf. Preparing to unpack .../26-libharfbuzz0b_2.3.1-1_armhf.deb ... Unpacking libharfbuzz0b:armhf (2.3.1-1) ... Selecting previously unselected package x11-common. Preparing to unpack .../27-x11-common_1%3a7.7+19_all.deb ... Unpacking x11-common (1:7.7+19) ... Selecting previously unselected package libice6:armhf. Preparing to unpack .../28-libice6_2%3a1.0.9-2_armhf.deb ... Unpacking libice6:armhf (2:1.0.9-2) ... Selecting previously unselected package libevdev2:armhf. Preparing to unpack .../29-libevdev2_1.6.0+dfsg-1_armhf.deb ... Unpacking libevdev2:armhf (1.6.0+dfsg-1) ... Selecting previously unselected package libmtdev1:armhf. Preparing to unpack .../30-libmtdev1_1.1.5-1+b2_armhf.deb ... Unpacking libmtdev1:armhf (1.1.5-1+b2) ... Selecting previously unselected package libgudev-1.0-0:armhf. Preparing to unpack .../31-libgudev-1.0-0_232-2+rpi1_armhf.deb ... Unpacking libgudev-1.0-0:armhf (232-2+rpi1) ... Selecting previously unselected package libwacom-common. Preparing to unpack .../32-libwacom-common_0.32-1_all.deb ... Unpacking libwacom-common (0.32-1) ... Selecting previously unselected package libwacom2:armhf. Preparing to unpack .../33-libwacom2_0.32-1_armhf.deb ... Unpacking libwacom2:armhf (0.32-1) ... Selecting previously unselected package libinput-bin. Preparing to unpack .../34-libinput-bin_1.12.6-2_armhf.deb ... Unpacking libinput-bin (1.12.6-2) ... Selecting previously unselected package libinput10:armhf. Preparing to unpack .../35-libinput10_1.12.6-2_armhf.deb ... Unpacking libinput10:armhf (1.12.6-2) ... Selecting previously unselected package libjpeg62-turbo:armhf. Preparing to unpack .../36-libjpeg62-turbo_1%3a1.5.2-2+b1_armhf.deb ... Unpacking libjpeg62-turbo:armhf (1:1.5.2-2+b1) ... Selecting previously unselected package libqt5dbus5:armhf. Preparing to unpack .../37-libqt5dbus5_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking libqt5dbus5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package libqt5network5:armhf. Preparing to unpack .../38-libqt5network5_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking libqt5network5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package libsm6:armhf. Preparing to unpack .../39-libsm6_2%3a1.2.3-1_armhf.deb ... Unpacking libsm6:armhf (2:1.2.3-1) ... Selecting previously unselected package libxcb-icccm4:armhf. Preparing to unpack .../40-libxcb-icccm4_0.4.1-1.1_armhf.deb ... Unpacking libxcb-icccm4:armhf (0.4.1-1.1) ... Selecting previously unselected package libxcb-shm0:armhf. Preparing to unpack .../41-libxcb-shm0_1.13.1-2_armhf.deb ... Unpacking libxcb-shm0:armhf (1.13.1-2) ... Selecting previously unselected package libxcb-util0:armhf. Preparing to unpack .../42-libxcb-util0_0.3.8-3+b2_armhf.deb ... Unpacking libxcb-util0:armhf (0.3.8-3+b2) ... Selecting previously unselected package libxcb-image0:armhf. Preparing to unpack .../43-libxcb-image0_0.4.0-1+b2_armhf.deb ... Unpacking libxcb-image0:armhf (0.4.0-1+b2) ... Selecting previously unselected package libxcb-keysyms1:armhf. Preparing to unpack .../44-libxcb-keysyms1_0.4.0-1+b2_armhf.deb ... Unpacking libxcb-keysyms1:armhf (0.4.0-1+b2) ... Selecting previously unselected package libxcb-randr0:armhf. Preparing to unpack .../45-libxcb-randr0_1.13.1-2_armhf.deb ... Unpacking libxcb-randr0:armhf (1.13.1-2) ... Selecting previously unselected package libxcb-render0:armhf. Preparing to unpack .../46-libxcb-render0_1.13.1-2_armhf.deb ... Unpacking libxcb-render0:armhf (1.13.1-2) ... Selecting previously unselected package libxcb-render-util0:armhf. Preparing to unpack .../47-libxcb-render-util0_0.3.9-1+b1_armhf.deb ... Unpacking libxcb-render-util0:armhf (0.3.9-1+b1) ... Selecting previously unselected package libxcb-shape0:armhf. Preparing to unpack .../48-libxcb-shape0_1.13.1-2_armhf.deb ... Unpacking libxcb-shape0:armhf (1.13.1-2) ... Selecting previously unselected package libxcb-xinerama0:armhf. Preparing to unpack .../49-libxcb-xinerama0_1.13.1-2_armhf.deb ... Unpacking libxcb-xinerama0:armhf (1.13.1-2) ... Selecting previously unselected package libxcb-xkb1:armhf. Preparing to unpack .../50-libxcb-xkb1_1.13.1-2_armhf.deb ... Unpacking libxcb-xkb1:armhf (1.13.1-2) ... Selecting previously unselected package libxi6:armhf. Preparing to unpack .../51-libxi6_2%3a1.7.9-1_armhf.deb ... Unpacking libxi6:armhf (2:1.7.9-1) ... Selecting previously unselected package xkb-data. Preparing to unpack .../52-xkb-data_2.26-2_all.deb ... Unpacking xkb-data (2.26-2) ... Selecting previously unselected package libxkbcommon0:armhf. Preparing to unpack .../53-libxkbcommon0_0.8.2-1_armhf.deb ... Unpacking libxkbcommon0:armhf (0.8.2-1) ... Selecting previously unselected package libxkbcommon-x11-0:armhf. Preparing to unpack .../54-libxkbcommon-x11-0_0.8.2-1_armhf.deb ... Unpacking libxkbcommon-x11-0:armhf (0.8.2-1) ... Selecting previously unselected package libxrender1:armhf. Preparing to unpack .../55-libxrender1_1%3a0.9.10-1_armhf.deb ... Unpacking libxrender1:armhf (1:0.9.10-1) ... Selecting previously unselected package libqt5gui5:armhf. Preparing to unpack .../56-libqt5gui5_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking libqt5gui5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package libqt5widgets5:armhf. Preparing to unpack .../57-libqt5widgets5_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking libqt5widgets5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package libqt5svg5:armhf. Preparing to unpack .../58-libqt5svg5_5.11.3-2_armhf.deb ... Unpacking libqt5svg5:armhf (5.11.3-2) ... Selecting previously unselected package libpython3.7-minimal:armhf. Preparing to unpack .../59-libpython3.7-minimal_3.7.3-2+deb10u1_armhf.deb ... Unpacking libpython3.7-minimal:armhf (3.7.3-2+deb10u1) ... Selecting previously unselected package python3.7-minimal. Preparing to unpack .../60-python3.7-minimal_3.7.3-2+deb10u1_armhf.deb ... Unpacking python3.7-minimal (3.7.3-2+deb10u1) ... Setting up libpython3.7-minimal:armhf (3.7.3-2+deb10u1) ... Setting up python3.7-minimal (3.7.3-2+deb10u1) ... Selecting previously unselected package python3-minimal. (Reading database ... 88683 files and directories currently installed.) Preparing to unpack .../python3-minimal_3.7.3-1_armhf.deb ... Unpacking python3-minimal (3.7.3-1) ... Selecting previously unselected package libmpdec2:armhf. Preparing to unpack .../libmpdec2_2.4.2-2_armhf.deb ... Unpacking libmpdec2:armhf (2.4.2-2) ... Selecting previously unselected package libpython3.7-stdlib:armhf. Preparing to unpack .../libpython3.7-stdlib_3.7.3-2+deb10u1_armhf.deb ... Unpacking libpython3.7-stdlib:armhf (3.7.3-2+deb10u1) ... Selecting previously unselected package python3.7. Preparing to unpack .../python3.7_3.7.3-2+deb10u1_armhf.deb ... Unpacking python3.7 (3.7.3-2+deb10u1) ... Selecting previously unselected package libpython3-stdlib:armhf. Preparing to unpack .../libpython3-stdlib_3.7.3-1_armhf.deb ... Unpacking libpython3-stdlib:armhf (3.7.3-1) ... Setting up python3-minimal (3.7.3-1) ... Selecting previously unselected package python3. (Reading database ... 89095 files and directories currently installed.) Preparing to unpack .../000-python3_3.7.3-1_armhf.deb ... Unpacking python3 (3.7.3-1) ... Selecting previously unselected package manpages. Preparing to unpack .../001-manpages_4.16-2_all.deb ... Unpacking manpages (4.16-2) ... Selecting previously unselected package hicolor-icon-theme. Preparing to unpack .../002-hicolor-icon-theme_0.17-2_all.deb ... Unpacking hicolor-icon-theme (0.17-2) ... Selecting previously unselected package libjbig0:armhf. Preparing to unpack .../003-libjbig0_2.1-3.1+b2_armhf.deb ... Unpacking libjbig0:armhf (2.1-3.1+b2) ... Selecting previously unselected package libwebp6:armhf. Preparing to unpack .../004-libwebp6_0.6.1-2_armhf.deb ... Unpacking libwebp6:armhf (0.6.1-2) ... Selecting previously unselected package libtiff5:armhf. Preparing to unpack .../005-libtiff5_4.1.0+git191117-2~deb10u1_armhf.deb ... Unpacking libtiff5:armhf (4.1.0+git191117-2~deb10u1) ... Selecting previously unselected package libxml2:armhf. Preparing to unpack .../006-libxml2_2.9.4+dfsg1-7+b3_armhf.deb ... Unpacking libxml2:armhf (2.9.4+dfsg1-7+b3) ... Selecting previously unselected package shared-mime-info. Preparing to unpack .../007-shared-mime-info_1.10-1_armhf.deb ... Unpacking shared-mime-info (1.10-1) ... Selecting previously unselected package libgdk-pixbuf2.0-common. Preparing to unpack .../008-libgdk-pixbuf2.0-common_2.38.1+dfsg-1_all.deb ... Unpacking libgdk-pixbuf2.0-common (2.38.1+dfsg-1) ... Selecting previously unselected package libgdk-pixbuf2.0-0:armhf. Preparing to unpack .../009-libgdk-pixbuf2.0-0_2.38.1+dfsg-1_armhf.deb ... Unpacking libgdk-pixbuf2.0-0:armhf (2.38.1+dfsg-1) ... Selecting previously unselected package gtk-update-icon-cache. Preparing to unpack .../010-gtk-update-icon-cache_3.24.5-1+rpt2_armhf.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.5-1+rpt2) ... Selecting previously unselected package libpixman-1-0:armhf. Preparing to unpack .../011-libpixman-1-0_0.36.0-1+rpt1_armhf.deb ... Unpacking libpixman-1-0:armhf (0.36.0-1+rpt1) ... Selecting previously unselected package libcairo2:armhf. Preparing to unpack .../012-libcairo2_1.16.0-4+rpt1_armhf.deb ... Unpacking libcairo2:armhf (1.16.0-4+rpt1) ... Selecting previously unselected package libcroco3:armhf. Preparing to unpack .../013-libcroco3_0.6.12-3_armhf.deb ... Unpacking libcroco3:armhf (0.6.12-3) ... Selecting previously unselected package libthai-data. Preparing to unpack .../014-libthai-data_0.1.28-2_all.deb ... Unpacking libthai-data (0.1.28-2) ... Selecting previously unselected package libdatrie1:armhf. Preparing to unpack .../015-libdatrie1_0.2.12-2_armhf.deb ... Unpacking libdatrie1:armhf (0.2.12-2) ... Selecting previously unselected package libthai0:armhf. Preparing to unpack .../016-libthai0_0.1.28-2_armhf.deb ... Unpacking libthai0:armhf (0.1.28-2) ... Selecting previously unselected package libpango-1.0-0:armhf. Preparing to unpack .../017-libpango-1.0-0_1.42.4-7~deb10u1_armhf.deb ... Unpacking libpango-1.0-0:armhf (1.42.4-7~deb10u1) ... Selecting previously unselected package libpangoft2-1.0-0:armhf. Preparing to unpack .../018-libpangoft2-1.0-0_1.42.4-7~deb10u1_armhf.deb ... Unpacking libpangoft2-1.0-0:armhf (1.42.4-7~deb10u1) ... Selecting previously unselected package libpangocairo-1.0-0:armhf. Preparing to unpack .../019-libpangocairo-1.0-0_1.42.4-7~deb10u1_armhf.deb ... Unpacking libpangocairo-1.0-0:armhf (1.42.4-7~deb10u1) ... Selecting previously unselected package librsvg2-2:armhf. Preparing to unpack .../020-librsvg2-2_2.44.10-2.1+rpi1_armhf.deb ... Unpacking librsvg2-2:armhf (2.44.10-2.1+rpi1) ... Selecting previously unselected package librsvg2-common:armhf. Preparing to unpack .../021-librsvg2-common_2.44.10-2.1+rpi1_armhf.deb ... Unpacking librsvg2-common:armhf (2.44.10-2.1+rpi1) ... Selecting previously unselected package adwaita-icon-theme. Preparing to unpack .../022-adwaita-icon-theme_3.30.1-1_all.deb ... Unpacking adwaita-icon-theme (3.30.1-1) ... Selecting previously unselected package libatspi2.0-0:armhf. Preparing to unpack .../023-libatspi2.0-0_2.30.0-7_armhf.deb ... Unpacking libatspi2.0-0:armhf (2.30.0-7) ... Selecting previously unselected package libxtst6:armhf. Preparing to unpack .../024-libxtst6_2%3a1.2.3-1_armhf.deb ... Unpacking libxtst6:armhf (2:1.2.3-1) ... Selecting previously unselected package at-spi2-core. Preparing to unpack .../025-at-spi2-core_2.30.0-7_armhf.deb ... Unpacking at-spi2-core (2.30.0-7) ... Selecting previously unselected package binutils-common:armhf. Preparing to unpack .../026-binutils-common_2.31.1-16+rpi2_armhf.deb ... Unpacking binutils-common:armhf (2.31.1-16+rpi2) ... Selecting previously unselected package libbinutils:armhf. Preparing to unpack .../027-libbinutils_2.31.1-16+rpi2_armhf.deb ... Unpacking libbinutils:armhf (2.31.1-16+rpi2) ... Selecting previously unselected package libfl2:armhf. Preparing to unpack .../028-libfl2_2.6.4-6.2_armhf.deb ... Unpacking libfl2:armhf (2.6.4-6.2) ... Selecting previously unselected package binutils-arm-linux-gnueabihf. Preparing to unpack .../029-binutils-arm-linux-gnueabihf_2.31.1-16+rpi2_armhf.deb ... Unpacking binutils-arm-linux-gnueabihf (2.31.1-16+rpi2) ... Selecting previously unselected package binutils. Preparing to unpack .../030-binutils_2.31.1-16+rpi2_armhf.deb ... Unpacking binutils (2.31.1-16+rpi2) ... Selecting previously unselected package libc-dev-bin. Preparing to unpack .../031-libc-dev-bin_2.28-10+rpi1_armhf.deb ... Unpacking libc-dev-bin (2.28-10+rpi1) ... Selecting previously unselected package linux-libc-dev:armhf. Preparing to unpack .../032-linux-libc-dev_4.18.20-2+rpi1_armhf.deb ... Unpacking linux-libc-dev:armhf (4.18.20-2+rpi1) ... Selecting previously unselected package libc6-dev:armhf. Preparing to unpack .../033-libc6-dev_2.28-10+rpi1_armhf.deb ... Unpacking libc6-dev:armhf (2.28-10+rpi1) ... Selecting previously unselected package libisl19:armhf. Preparing to unpack .../034-libisl19_0.20-2_armhf.deb ... Unpacking libisl19:armhf (0.20-2) ... Selecting previously unselected package libmpfr6:armhf. Preparing to unpack .../035-libmpfr6_4.0.2-1_armhf.deb ... Unpacking libmpfr6:armhf (4.0.2-1) ... Selecting previously unselected package libmpc3:armhf. Preparing to unpack .../036-libmpc3_1.1.0-1_armhf.deb ... Unpacking libmpc3:armhf (1.1.0-1) ... Selecting previously unselected package cpp-8. Preparing to unpack .../037-cpp-8_8.3.0-6+rpi1_armhf.deb ... Unpacking cpp-8 (8.3.0-6+rpi1) ... Selecting previously unselected package cpp. Preparing to unpack .../038-cpp_4%3a8.3.0-1+rpi2_armhf.deb ... Unpacking cpp (4:8.3.0-1+rpi2) ... Selecting previously unselected package libcc1-0:armhf. Preparing to unpack .../039-libcc1-0_8.3.0-6+rpi1_armhf.deb ... Unpacking libcc1-0:armhf (8.3.0-6+rpi1) ... Selecting previously unselected package libgomp1:armhf. Preparing to unpack .../040-libgomp1_8.3.0-6+rpi1_armhf.deb ... Unpacking libgomp1:armhf (8.3.0-6+rpi1) ... Selecting previously unselected package libasan5:armhf. Preparing to unpack .../041-libasan5_8.3.0-6+rpi1_armhf.deb ... Unpacking libasan5:armhf (8.3.0-6+rpi1) ... Selecting previously unselected package libubsan1:armhf. Preparing to unpack .../042-libubsan1_8.3.0-6+rpi1_armhf.deb ... Unpacking libubsan1:armhf (8.3.0-6+rpi1) ... Selecting previously unselected package libgcc-8-dev:armhf. Preparing to unpack .../043-libgcc-8-dev_8.3.0-6+rpi1_armhf.deb ... Unpacking libgcc-8-dev:armhf (8.3.0-6+rpi1) ... Selecting previously unselected package gcc-8. Preparing to unpack .../044-gcc-8_8.3.0-6+rpi1_armhf.deb ... Unpacking gcc-8 (8.3.0-6+rpi1) ... Selecting previously unselected package gcc. Preparing to unpack .../045-gcc_4%3a8.3.0-1+rpi2_armhf.deb ... Unpacking gcc (4:8.3.0-1+rpi2) ... Selecting previously unselected package libstdc++-8-dev:armhf. Preparing to unpack .../046-libstdc++-8-dev_8.3.0-6+rpi1_armhf.deb ... Unpacking libstdc++-8-dev:armhf (8.3.0-6+rpi1) ... Selecting previously unselected package g++-8. Preparing to unpack .../047-g++-8_8.3.0-6+rpi1_armhf.deb ... Unpacking g++-8 (8.3.0-6+rpi1) ... Selecting previously unselected package g++. Preparing to unpack .../048-g++_4%3a8.3.0-1+rpi2_armhf.deb ... Unpacking g++ (4:8.3.0-1+rpi2) ... Selecting previously unselected package make. Preparing to unpack .../049-make_4.2.1-1.2_armhf.deb ... Unpacking make (4.2.1-1.2) ... Selecting previously unselected package libdpkg-perl. Preparing to unpack .../050-libdpkg-perl_1.19.7_all.deb ... Unpacking libdpkg-perl (1.19.7) ... Selecting previously unselected package patch. Preparing to unpack .../051-patch_2.7.6-3+deb10u1_armhf.deb ... Unpacking patch (2.7.6-3+deb10u1) ... Selecting previously unselected package dpkg-dev. Preparing to unpack .../052-dpkg-dev_1.19.7_all.deb ... Unpacking dpkg-dev (1.19.7) ... Selecting previously unselected package build-essential. Preparing to unpack .../053-build-essential_12.6_armhf.deb ... Unpacking build-essential (12.6) ... Selecting previously unselected package dbus-user-session. Preparing to unpack .../054-dbus-user-session_1.12.16-1_armhf.deb ... Unpacking dbus-user-session (1.12.16-1) ... Selecting previously unselected package libdconf1:armhf. Preparing to unpack .../055-libdconf1_0.30.1-2_armhf.deb ... Unpacking libdconf1:armhf (0.30.1-2) ... Selecting previously unselected package dconf-service. Preparing to unpack .../056-dconf-service_0.30.1-2_armhf.deb ... Unpacking dconf-service (0.30.1-2) ... Selecting previously unselected package dconf-gsettings-backend:armhf. Preparing to unpack .../057-dconf-gsettings-backend_0.30.1-2_armhf.deb ... Unpacking dconf-gsettings-backend:armhf (0.30.1-2) ... Selecting previously unselected package python3-lib2to3. Preparing to unpack .../058-python3-lib2to3_3.7.3-1_all.deb ... Unpacking python3-lib2to3 (3.7.3-1) ... Selecting previously unselected package python3-distutils. Preparing to unpack .../059-python3-distutils_3.7.3-1_all.deb ... Unpacking python3-distutils (3.7.3-1) ... Selecting previously unselected package dh-python. Preparing to unpack .../060-dh-python_3.20190308_all.deb ... Unpacking dh-python (3.20190308) ... Selecting previously unselected package libfakeroot:armhf. Preparing to unpack .../061-libfakeroot_1.23-1_armhf.deb ... Unpacking libfakeroot:armhf (1.23-1) ... Selecting previously unselected package fakeroot. Preparing to unpack .../062-fakeroot_1.23-1_armhf.deb ... Unpacking fakeroot (1.23-1) ... Selecting previously unselected package libproxy1v5:armhf. Preparing to unpack .../063-libproxy1v5_0.4.15-5_armhf.deb ... Unpacking libproxy1v5:armhf (0.4.15-5) ... Selecting previously unselected package glib-networking-common. Preparing to unpack .../064-glib-networking-common_2.58.0-2_all.deb ... Unpacking glib-networking-common (2.58.0-2) ... Selecting previously unselected package glib-networking-services. Preparing to unpack .../065-glib-networking-services_2.58.0-2_armhf.deb ... Unpacking glib-networking-services (2.58.0-2) ... Selecting previously unselected package gsettings-desktop-schemas. Preparing to unpack .../066-gsettings-desktop-schemas_3.28.1-1_all.deb ... Unpacking gsettings-desktop-schemas (3.28.1-1) ... Selecting previously unselected package glib-networking:armhf. Preparing to unpack .../067-glib-networking_2.58.0-2_armhf.deb ... Unpacking glib-networking:armhf (2.58.0-2) ... Selecting previously unselected package libalgorithm-diff-perl. Preparing to unpack .../068-libalgorithm-diff-perl_1.19.03-2_all.deb ... Unpacking libalgorithm-diff-perl (1.19.03-2) ... Selecting previously unselected package libalgorithm-diff-xs-perl. Preparing to unpack .../069-libalgorithm-diff-xs-perl_0.04-5+b1_armhf.deb ... Unpacking libalgorithm-diff-xs-perl (0.04-5+b1) ... Selecting previously unselected package libalgorithm-merge-perl. Preparing to unpack .../070-libalgorithm-merge-perl_0.08-3_all.deb ... Unpacking libalgorithm-merge-perl (0.08-3) ... Selecting previously unselected package libatk1.0-data. Preparing to unpack .../071-libatk1.0-data_2.30.0-2_all.deb ... Unpacking libatk1.0-data (2.30.0-2) ... Selecting previously unselected package libatk1.0-0:armhf. Preparing to unpack .../072-libatk1.0-0_2.30.0-2_armhf.deb ... Unpacking libatk1.0-0:armhf (2.30.0-2) ... Selecting previously unselected package libatk-bridge2.0-0:armhf. Preparing to unpack .../073-libatk-bridge2.0-0_2.30.0-5_armhf.deb ... Unpacking libatk-bridge2.0-0:armhf (2.30.0-5) ... Selecting previously unselected package libavahi-common-data:armhf. Preparing to unpack .../074-libavahi-common-data_0.7-4+b1_armhf.deb ... Unpacking libavahi-common-data:armhf (0.7-4+b1) ... Selecting previously unselected package libavahi-common3:armhf. Preparing to unpack .../075-libavahi-common3_0.7-4+b1_armhf.deb ... Unpacking libavahi-common3:armhf (0.7-4+b1) ... Selecting previously unselected package libavahi-client3:armhf. Preparing to unpack .../076-libavahi-client3_0.7-4+b1_armhf.deb ... Unpacking libavahi-client3:armhf (0.7-4+b1) ... Selecting previously unselected package libcairo-gobject2:armhf. Preparing to unpack .../077-libcairo-gobject2_1.16.0-4+rpt1_armhf.deb ... Unpacking libcairo-gobject2:armhf (1.16.0-4+rpt1) ... Selecting previously unselected package liblcms2-2:armhf. Preparing to unpack .../078-liblcms2-2_2.9-3_armhf.deb ... Unpacking liblcms2-2:armhf (2.9-3) ... Selecting previously unselected package libcolord2:armhf. Preparing to unpack .../079-libcolord2_1.4.3-4_armhf.deb ... Unpacking libcolord2:armhf (1.4.3-4) ... Selecting previously unselected package libcups2:armhf. Preparing to unpack .../080-libcups2_2.2.10-6+deb10u2_armhf.deb ... Unpacking libcups2:armhf (2.2.10-6+deb10u2) ... Selecting previously unselected package libdrm-amdgpu1:armhf. Preparing to unpack .../081-libdrm-amdgpu1_2.4.100-4+rpi1~bpo10+1_armhf.deb ... Unpacking libdrm-amdgpu1:armhf (2.4.100-4+rpi1~bpo10+1) ... Selecting previously unselected package libdrm-nouveau2:armhf. Preparing to unpack .../082-libdrm-nouveau2_2.4.100-4+rpi1~bpo10+1_armhf.deb ... Unpacking libdrm-nouveau2:armhf (2.4.100-4+rpi1~bpo10+1) ... Selecting previously unselected package libdrm-radeon1:armhf. Preparing to unpack .../083-libdrm-radeon1_2.4.100-4+rpi1~bpo10+1_armhf.deb ... Unpacking libdrm-radeon1:armhf (2.4.100-4+rpi1~bpo10+1) ... Selecting previously unselected package libxcb-glx0:armhf. Preparing to unpack .../084-libxcb-glx0_1.13.1-2_armhf.deb ... Unpacking libxcb-glx0:armhf (1.13.1-2) ... Selecting previously unselected package libxfixes3:armhf. Preparing to unpack .../085-libxfixes3_1%3a5.0.3-1_armhf.deb ... Unpacking libxfixes3:armhf (1:5.0.3-1) ... Selecting previously unselected package libxdamage1:armhf. Preparing to unpack .../086-libxdamage1_1%3a1.1.4-3+b3_armhf.deb ... Unpacking libxdamage1:armhf (1:1.1.4-3+b3) ... Selecting previously unselected package libxxf86vm1:armhf. Preparing to unpack .../087-libxxf86vm1_1%3a1.1.4-1+b2_armhf.deb ... Unpacking libxxf86vm1:armhf (1:1.1.4-1+b2) ... Selecting previously unselected package libllvm9:armhf. Preparing to unpack .../088-libllvm9_1%3a9.0.1-6+rpi1~bpo10+1_armhf.deb ... Unpacking libllvm9:armhf (1:9.0.1-6+rpi1~bpo10+1) ... Selecting previously unselected package libsensors-config. Preparing to unpack .../089-libsensors-config_1%3a3.5.0-3_all.deb ... Unpacking libsensors-config (1:3.5.0-3) ... Selecting previously unselected package libsensors5:armhf. Preparing to unpack .../090-libsensors5_1%3a3.5.0-3_armhf.deb ... Unpacking libsensors5:armhf (1:3.5.0-3) ... Selecting previously unselected package libgl1-mesa-dri:armhf. Preparing to unpack .../091-libgl1-mesa-dri_19.3.2-1~bpo10+1~rpt1_armhf.deb ... Unpacking libgl1-mesa-dri:armhf (19.3.2-1~bpo10+1~rpt1) ... Selecting previously unselected package libglx-mesa0:armhf. Preparing to unpack .../092-libglx-mesa0_19.3.2-1~bpo10+1~rpt1_armhf.deb ... Unpacking libglx-mesa0:armhf (19.3.2-1~bpo10+1~rpt1) ... Selecting previously unselected package libglx0:armhf. Preparing to unpack .../093-libglx0_1.3.0-7~bpo10+1_armhf.deb ... Unpacking libglx0:armhf (1.3.0-7~bpo10+1) ... Selecting previously unselected package libgl1:armhf. Preparing to unpack .../094-libgl1_1.3.0-7~bpo10+1_armhf.deb ... Unpacking libgl1:armhf (1.3.0-7~bpo10+1) ... Selecting previously unselected package xorg-sgml-doctools. Preparing to unpack .../095-xorg-sgml-doctools_1%3a1.11-1_all.deb ... Unpacking xorg-sgml-doctools (1:1.11-1) ... Selecting previously unselected package x11proto-dev. Preparing to unpack .../096-x11proto-dev_2018.4-4_all.deb ... Unpacking x11proto-dev (2018.4-4) ... Selecting previously unselected package x11proto-core-dev. Preparing to unpack .../097-x11proto-core-dev_2018.4-4_all.deb ... Unpacking x11proto-core-dev (2018.4-4) ... Selecting previously unselected package libxau-dev:armhf. Preparing to unpack .../098-libxau-dev_1%3a1.0.8-1+b2_armhf.deb ... Unpacking libxau-dev:armhf (1:1.0.8-1+b2) ... Selecting previously unselected package libxdmcp-dev:armhf. Preparing to unpack .../099-libxdmcp-dev_1%3a1.1.2-3_armhf.deb ... Unpacking libxdmcp-dev:armhf (1:1.1.2-3) ... Selecting previously unselected package xtrans-dev. Preparing to unpack .../100-xtrans-dev_1.3.5-1_all.deb ... Unpacking xtrans-dev (1.3.5-1) ... Selecting previously unselected package libpthread-stubs0-dev:armhf. Preparing to unpack .../101-libpthread-stubs0-dev_0.4-1_armhf.deb ... Unpacking libpthread-stubs0-dev:armhf (0.4-1) ... Selecting previously unselected package libxcb1-dev:armhf. Preparing to unpack .../102-libxcb1-dev_1.13.1-2_armhf.deb ... Unpacking libxcb1-dev:armhf (1.13.1-2) ... Selecting previously unselected package libx11-dev:armhf. Preparing to unpack .../103-libx11-dev_2%3a1.6.7-1_armhf.deb ... Unpacking libx11-dev:armhf (2:1.6.7-1) ... Selecting previously unselected package libglx-dev:armhf. Preparing to unpack .../104-libglx-dev_1.3.0-7~bpo10+1_armhf.deb ... Unpacking libglx-dev:armhf (1.3.0-7~bpo10+1) ... Selecting previously unselected package libgl-dev:armhf. Preparing to unpack .../105-libgl-dev_1.3.0-7~bpo10+1_armhf.deb ... Unpacking libgl-dev:armhf (1.3.0-7~bpo10+1) ... Selecting previously unselected package libegl-dev:armhf. Preparing to unpack .../106-libegl-dev_1.3.0-7~bpo10+1_armhf.deb ... Unpacking libegl-dev:armhf (1.3.0-7~bpo10+1) ... Selecting previously unselected package libepoxy0:armhf. Preparing to unpack .../107-libepoxy0_1.5.3-0.1_armhf.deb ... Unpacking libepoxy0:armhf (1.5.3-0.1) ... Selecting previously unselected package libexpat1-dev:armhf. Preparing to unpack .../108-libexpat1-dev_2.2.6-2+deb10u1_armhf.deb ... Unpacking libexpat1-dev:armhf (2.2.6-2+deb10u1) ... Selecting previously unselected package libfile-fcntllock-perl. Preparing to unpack .../109-libfile-fcntllock-perl_0.22-3+b4_armhf.deb ... Unpacking libfile-fcntllock-perl (0.22-3+b4) ... Selecting previously unselected package libgdk-pixbuf2.0-bin. Preparing to unpack .../110-libgdk-pixbuf2.0-bin_2.38.1+dfsg-1_armhf.deb ... Unpacking libgdk-pixbuf2.0-bin (2.38.1+dfsg-1) ... Selecting previously unselected package libgles1:armhf. Preparing to unpack .../111-libgles1_1.3.0-7~bpo10+1_armhf.deb ... Unpacking libgles1:armhf (1.3.0-7~bpo10+1) ... Selecting previously unselected package libgles-dev:armhf. Preparing to unpack .../112-libgles-dev_1.3.0-7~bpo10+1_armhf.deb ... Unpacking libgles-dev:armhf (1.3.0-7~bpo10+1) ... Selecting previously unselected package libgles2-mesa-dev:armhf. Preparing to unpack .../113-libgles2-mesa-dev_19.3.2-1~bpo10+1~rpt1_armhf.deb ... Unpacking libgles2-mesa-dev:armhf (19.3.2-1~bpo10+1~rpt1) ... Selecting previously unselected package libglib2.0-data. Preparing to unpack .../114-libglib2.0-data_2.58.3-2+deb10u2_all.deb ... Unpacking libglib2.0-data (2.58.3-2+deb10u2) ... Selecting previously unselected package libjson-glib-1.0-common. Preparing to unpack .../115-libjson-glib-1.0-common_1.4.4-2_all.deb ... Unpacking libjson-glib-1.0-common (1.4.4-2) ... Selecting previously unselected package libjson-glib-1.0-0:armhf. Preparing to unpack .../116-libjson-glib-1.0-0_1.4.4-2_armhf.deb ... Unpacking libjson-glib-1.0-0:armhf (1.4.4-2) ... Selecting previously unselected package libsoup2.4-1:armhf. Preparing to unpack .../117-libsoup2.4-1_2.64.2-2_armhf.deb ... Unpacking libsoup2.4-1:armhf (2.64.2-2) ... Selecting previously unselected package libsoup-gnome2.4-1:armhf. Preparing to unpack .../118-libsoup-gnome2.4-1_2.64.2-2_armhf.deb ... Unpacking libsoup-gnome2.4-1:armhf (2.64.2-2) ... Selecting previously unselected package librest-0.7-0:armhf. Preparing to unpack .../119-librest-0.7-0_0.8.1-1_armhf.deb ... Unpacking librest-0.7-0:armhf (0.8.1-1) ... Selecting previously unselected package libwayland-cursor0:armhf. Preparing to unpack .../120-libwayland-cursor0_1.16.0-1_armhf.deb ... Unpacking libwayland-cursor0:armhf (1.16.0-1) ... Selecting previously unselected package libwayland-egl1:armhf. Preparing to unpack .../121-libwayland-egl1_1.16.0-1_armhf.deb ... Unpacking libwayland-egl1:armhf (1.16.0-1) ... Selecting previously unselected package libxcomposite1:armhf. Preparing to unpack .../122-libxcomposite1_1%3a0.4.4-2_armhf.deb ... Unpacking libxcomposite1:armhf (1:0.4.4-2) ... Selecting previously unselected package libxcursor1:armhf. Preparing to unpack .../123-libxcursor1_1%3a1.1.15-2_armhf.deb ... Unpacking libxcursor1:armhf (1:1.1.15-2) ... Selecting previously unselected package libxinerama1:armhf. Preparing to unpack .../124-libxinerama1_2%3a1.1.4-2_armhf.deb ... Unpacking libxinerama1:armhf (2:1.1.4-2) ... Selecting previously unselected package libxrandr2:armhf. Preparing to unpack .../125-libxrandr2_2%3a1.5.1-1_armhf.deb ... Unpacking libxrandr2:armhf (2:1.5.1-1) ... Selecting previously unselected package libgtk-3-common. Preparing to unpack .../126-libgtk-3-common_3.24.5-1+rpt2_all.deb ... Unpacking libgtk-3-common (3.24.5-1+rpt2) ... Selecting previously unselected package libgtk-3-0:armhf. Preparing to unpack .../127-libgtk-3-0_3.24.5-1+rpt2_armhf.deb ... Unpacking libgtk-3-0:armhf (3.24.5-1+rpt2) ... Selecting previously unselected package libgtk-3-bin. Preparing to unpack .../128-libgtk-3-bin_3.24.5-1+rpt2_armhf.deb ... Unpacking libgtk-3-bin (3.24.5-1+rpt2) ... Selecting previously unselected package libpython3.7:armhf. Preparing to unpack .../129-libpython3.7_3.7.3-2+deb10u1_armhf.deb ... Unpacking libpython3.7:armhf (3.7.3-2+deb10u1) ... Selecting previously unselected package libpython3.7-dev:armhf. Preparing to unpack .../130-libpython3.7-dev_3.7.3-2+deb10u1_armhf.deb ... Unpacking libpython3.7-dev:armhf (3.7.3-2+deb10u1) ... Selecting previously unselected package libpython3-dev:armhf. Preparing to unpack .../131-libpython3-dev_3.7.3-1_armhf.deb ... Unpacking libpython3-dev:armhf (3.7.3-1) ... Selecting previously unselected package libqt5concurrent5:armhf. Preparing to unpack .../132-libqt5concurrent5_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking libqt5concurrent5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package libqt5opengl5:armhf. Preparing to unpack .../133-libqt5opengl5_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking libqt5opengl5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package libqt5printsupport5:armhf. Preparing to unpack .../134-libqt5printsupport5_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking libqt5printsupport5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package libqt5sql5:armhf. Preparing to unpack .../135-libqt5sql5_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking libqt5sql5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package libqt5test5:armhf. Preparing to unpack .../136-libqt5test5_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking libqt5test5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package libqt5xml5:armhf. Preparing to unpack .../137-libqt5xml5_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking libqt5xml5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package libvulkan1:armhf. Preparing to unpack .../138-libvulkan1_1.1.97-2_armhf.deb ... Unpacking libvulkan1:armhf (1.1.97-2) ... Selecting previously unselected package libvulkan-dev:armhf. Preparing to unpack .../139-libvulkan-dev_1.1.97-2_armhf.deb ... Unpacking libvulkan-dev:armhf (1.1.97-2) ... Selecting previously unselected package x11proto-xext-dev. Preparing to unpack .../140-x11proto-xext-dev_2018.4-4_all.deb ... Unpacking x11proto-xext-dev (2018.4-4) ... Selecting previously unselected package libxext-dev:armhf. Preparing to unpack .../141-libxext-dev_2%3a1.3.3-1+b2_armhf.deb ... Unpacking libxext-dev:armhf (2:1.3.3-1+b2) ... Selecting previously unselected package qt5-qmake-bin. Preparing to unpack .../142-qt5-qmake-bin_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking qt5-qmake-bin (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package qtchooser. Preparing to unpack .../143-qtchooser_66-2_armhf.deb ... Unpacking qtchooser (66-2) ... Selecting previously unselected package qt5-qmake:armhf. Preparing to unpack .../144-qt5-qmake_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking qt5-qmake:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package qtbase5-dev-tools. Preparing to unpack .../145-qtbase5-dev-tools_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking qtbase5-dev-tools (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package qtbase5-dev:armhf. Preparing to unpack .../146-qtbase5-dev_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking qtbase5-dev:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package libqt5opengl5-dev:armhf. Preparing to unpack .../147-libqt5opengl5-dev_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking libqt5opengl5-dev:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package libqt5sql5-sqlite:armhf. Preparing to unpack .../148-libqt5sql5-sqlite_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking libqt5sql5-sqlite:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package libwacom-bin. Preparing to unpack .../149-libwacom-bin_0.32-1_armhf.deb ... Unpacking libwacom-bin (0.32-1) ... Selecting previously unselected package manpages-dev. Preparing to unpack .../150-manpages-dev_4.16-2_all.deb ... Unpacking manpages-dev (4.16-2) ... Selecting previously unselected package python-pip-whl. Preparing to unpack .../151-python-pip-whl_18.1-5+rpt1_all.deb ... Unpacking python-pip-whl (18.1-5+rpt1) ... Selecting previously unselected package python3.7-dev. Preparing to unpack .../152-python3.7-dev_3.7.3-2+deb10u1_armhf.deb ... Unpacking python3.7-dev (3.7.3-2+deb10u1) ... Selecting previously unselected package python3-dev. Preparing to unpack .../153-python3-dev_3.7.3-1_armhf.deb ... Unpacking python3-dev (3.7.3-1) ... Selecting previously unselected package python3-pkg-resources. Preparing to unpack .../154-python3-pkg-resources_40.8.0-1_all.deb ... Unpacking python3-pkg-resources (40.8.0-1) ... Selecting previously unselected package python3-virtualenv. Preparing to unpack .../155-python3-virtualenv_15.1.0+ds-2_all.deb ... Unpacking python3-virtualenv (15.1.0+ds-2) ... Selecting previously unselected package qt5-default:armhf. Preparing to unpack .../156-qt5-default_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking qt5-default:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package qt5-gtk-platformtheme:armhf. Preparing to unpack .../157-qt5-gtk-platformtheme_5.11.3+dfsg1-1+rpi1+deb10u3_armhf.deb ... Unpacking qt5-gtk-platformtheme:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Selecting previously unselected package qttranslations5-l10n. Preparing to unpack .../158-qttranslations5-l10n_5.11.3-2_all.deb ... Unpacking qttranslations5-l10n (5.11.3-2) ... Selecting previously unselected package virtualenv. Preparing to unpack .../159-virtualenv_15.1.0+ds-2_all.deb ... Unpacking virtualenv (15.1.0+ds-2) ... Selecting previously unselected package xdg-user-dirs. Preparing to unpack .../160-xdg-user-dirs_0.17-2_armhf.deb ... Unpacking xdg-user-dirs (0.17-2) ... Setting up libgraphite2-3:armhf (1.3.13-7) ... Setting up libxcb-dri3-0:armhf (1.13.1-2) ... Setting up liblcms2-2:armhf (2.9-3) ... Setting up libpixman-1-0:armhf (0.36.0-1+rpt1) ... Setting up libwayland-server0:armhf (1.16.0-1) ... Setting up libx11-xcb1:armhf (2:1.6.7-1) ... Setting up libproxy1v5:armhf (0.4.15-5) ... Setting up libdrm-nouveau2:armhf (2.4.100-4+rpi1~bpo10+1) ... Setting up libxcb-xfixes0:armhf (1.13.1-2) ... Setting up hicolor-icon-theme (0.17-2) ... Setting up libxi6:armhf (2:1.7.9-1) ... Setting up libxrender1:armhf (1:0.9.10-1) ... Setting up libdatrie1:armhf (0.2.12-2) ... Setting up xdg-user-dirs (0.17-2) ... Setting up libgbm1:armhf (19.3.2-1~bpo10+1~rpt1) ... Setting up libfile-fcntllock-perl (0.22-3+b4) ... Setting up libxcb-render0:armhf (1.13.1-2) ... Setting up libalgorithm-diff-perl (1.19.03-2) ... Setting up libglib2.0-0:armhf (2.58.3-2+deb10u2) ... Setting up libdrm-radeon1:armhf (2.4.100-4+rpi1~bpo10+1) ... Setting up manpages (4.16-2) ... Setting up libglvnd0:armhf (1.3.0-7~bpo10+1) ... Setting up libxcb-glx0:armhf (1.13.1-2) ... Setting up libgdk-pixbuf2.0-common (2.38.1+dfsg-1) ... Setting up libxcb-keysyms1:armhf (0.4.0-1+b2) ... Setting up libxcb-shape0:armhf (1.13.1-2) ... Setting up binutils-common:armhf (2.31.1-16+rpi2) ... Setting up x11-common (1:7.7+19) ... update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults Setting up libsensors-config (1:3.5.0-3) ... Setting up linux-libc-dev:armhf (4.18.20-2+rpi1) ... Setting up libxcb-render-util0:armhf (0.3.9-1+b1) ... Setting up xkb-data (2.26-2) ... Setting up libxcb-shm0:armhf (1.13.1-2) ... Setting up libxcb-icccm4:armhf (0.4.1-1.1) ... Setting up libatspi2.0-0:armhf (2.30.0-7) ... Setting up libxcb-util0:armhf (0.3.8-3+b2) ... Setting up libgomp1:armhf (8.3.0-6+rpi1) ... Setting up libpthread-stubs0-dev:armhf (0.4-1) ... Setting up libjbig0:armhf (2.1-3.1+b2) ... Setting up libpcre2-16-0:armhf (10.32-5) ... Setting up libcolord2:armhf (1.4.3-4) ... Setting up libicu63:armhf (63.1-6+deb10u1) ... Setting up libfakeroot:armhf (1.23-1) ... Setting up libxxf86vm1:armhf (1:1.1.4-1+b2) ... Setting up libxcb-xkb1:armhf (1.13.1-2) ... Setting up libxcb-image0:armhf (0.4.0-1+b2) ... Setting up fakeroot (1.23-1) ... update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode Setting up libxcb-present0:armhf (1.13.1-2) ... Setting up libdconf1:armhf (0.30.1-2) ... Setting up dbus-user-session (1.12.16-1) ... Setting up libasan5:armhf (8.3.0-6+rpi1) ... Setting up xtrans-dev (1.3.5-1) ... Setting up libglib2.0-data (2.58.3-2+deb10u2) ... Setting up libxcb-xinerama0:armhf (1.13.1-2) ... Setting up libgles2:armhf (1.3.0-7~bpo10+1) ... Setting up libjpeg62-turbo:armhf (1:1.5.2-2+b1) ... Setting up qttranslations5-l10n (5.11.3-2) ... Setting up qt5-qmake-bin (5.11.3+dfsg1-1+rpi1+deb10u3) ... Setting up libfreetype6:armhf (2.9.1-3+deb10u1) ... Setting up make (4.2.1-1.2) ... Setting up libepoxy0:armhf (1.5.3-0.1) ... Setting up libmpfr6:armhf (4.0.2-1) ... Setting up libxfixes3:armhf (1:5.0.3-1) ... Setting up libxcb-sync1:armhf (1.13.1-2) ... Setting up libavahi-common-data:armhf (0.7-4+b1) ... Setting up libgles1:armhf (1.3.0-7~bpo10+1) ... Setting up libxinerama1:armhf (2:1.1.4-2) ... Setting up libmpc3:armhf (1.1.0-1) ... Setting up libxrandr2:armhf (2:1.5.1-1) ... Setting up patch (2.7.6-3+deb10u1) ... Setting up libwebp6:armhf (0.6.1-2) ... Setting up fonts-dejavu-core (2.37-1) ... Setting up libfl2:armhf (2.6.4-6.2) ... Setting up libsensors5:armhf (1:3.5.0-3) ... Setting up libglapi-mesa:armhf (19.3.2-1~bpo10+1~rpt1) ... Setting up libdpkg-perl (1.19.7) ... Setting up libmtdev1:armhf (1.1.5-1+b2) ... Setting up libvulkan1:armhf (1.1.97-2) ... Setting up libubsan1:armhf (8.3.0-6+rpi1) ... Setting up libxcb-dri2-0:armhf (1.13.1-2) ... Setting up libatk1.0-data (2.30.0-2) ... Setting up libisl19:armhf (0.20-2) ... Setting up libxshmfence1:armhf (1.3-1) ... Setting up libxcb-randr0:armhf (1.13.1-2) ... Setting up libharfbuzz0b:armhf (2.3.1-1) ... Setting up libthai-data (0.1.28-2) ... Setting up xorg-sgml-doctools (1:1.11-1) ... Setting up libjson-glib-1.0-common (1.4.4-2) ... Setting up python-pip-whl (18.1-5+rpt1) ... Setting up libatk1.0-0:armhf (2.30.0-2) ... Setting up libtiff5:armhf (4.1.0+git191117-2~deb10u1) ... Setting up libwayland-egl1:armhf (1.16.0-1) ... Setting up libmpdec2:armhf (2.4.2-2) ... Setting up glib-networking-common (2.58.0-2) ... Setting up libbinutils:armhf (2.31.1-16+rpi2) ... Setting up cpp-8 (8.3.0-6+rpi1) ... Setting up libc-dev-bin (2.28-10+rpi1) ... Setting up binutils-arm-linux-gnueabihf (2.31.1-16+rpi2) ... Setting up libxcomposite1:armhf (1:0.4.4-2) ... Setting up libalgorithm-diff-xs-perl (0.04-5+b1) ... Setting up libevdev2:armhf (1.6.0+dfsg-1) ... Setting up libxml2:armhf (2.9.4+dfsg1-7+b3) ... Setting up libdouble-conversion1:armhf (3.1.0-3) ... Setting up libcc1-0:armhf (8.3.0-6+rpi1) ... Setting up libllvm9:armhf (1:9.0.1-6+rpi1~bpo10+1) ... Setting up libgudev-1.0-0:armhf (232-2+rpi1) ... Setting up qtchooser (66-2) ... Setting up libalgorithm-merge-perl (0.08-3) ... Setting up libdrm-amdgpu1:armhf (2.4.100-4+rpi1~bpo10+1) ... Setting up libwacom-common (0.32-1) ... Setting up libxkbcommon0:armhf (0.8.2-1) ... Setting up libwayland-client0:armhf (1.16.0-1) ... Setting up x11proto-dev (2018.4-4) ... Setting up glib-networking-services (2.58.0-2) ... Setting up manpages-dev (4.16-2) ... Setting up libice6:armhf (2:1.0.9-2) ... Setting up libpython3.7-stdlib:armhf (3.7.3-2+deb10u1) ... Setting up libvulkan-dev:armhf (1.1.97-2) ... Setting up libxdamage1:armhf (1:1.1.4-3+b3) ... Setting up libxau-dev:armhf (1:1.0.8-1+b2) ... Setting up qt5-qmake:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Setting up libpython3.7:armhf (3.7.3-2+deb10u1) ... Setting up fontconfig-config (2.13.1-2) ... Setting up libxtst6:armhf (2:1.2.3-1) ... Setting up libxcursor1:armhf (1:1.1.15-2) ... Setting up libgl1-mesa-dri:armhf (19.3.2-1~bpo10+1~rpt1) ... Setting up libavahi-common3:armhf (0.7-4+b1) ... Setting up dconf-service (0.30.1-2) ... Setting up binutils (2.31.1-16+rpi2) ... Setting up dpkg-dev (1.19.7) ... Setting up libjson-glib-1.0-0:armhf (1.4.4-2) ... Setting up libatk-bridge2.0-0:armhf (2.30.0-5) ... Setting up libthai0:armhf (0.1.28-2) ... Setting up libxdmcp-dev:armhf (1:1.1.2-3) ... Setting up libegl-mesa0:armhf (19.3.2-1~bpo10+1~rpt1) ... Setting up x11proto-core-dev (2018.4-4) ... Setting up shared-mime-info (1.10-1) ... Setting up libxkbcommon-x11-0:armhf (0.8.2-1) ... Setting up libcroco3:armhf (0.6.12-3) ... Setting up libqt5core5a:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Setting up libgcc-8-dev:armhf (8.3.0-6+rpi1) ... Setting up x11proto-xext-dev (2018.4-4) ... Setting up at-spi2-core (2.30.0-7) ... Setting up libqt5dbus5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Setting up libwayland-cursor0:armhf (1.16.0-1) ... Setting up cpp (4:8.3.0-1+rpi2) ... Setting up libegl1:armhf (1.3.0-7~bpo10+1) ... Setting up libc6-dev:armhf (2.28-10+rpi1) ... Setting up libfontconfig1:armhf (2.13.1-2) ... Setting up libqt5test5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Setting up libwacom2:armhf (0.32-1) ... Setting up libsm6:armhf (2:1.2.3-1) ... Setting up libqt5concurrent5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Setting up libavahi-client3:armhf (0.7-4+b1) ... Setting up libpython3-stdlib:armhf (3.7.3-1) ... Setting up libstdc++-8-dev:armhf (8.3.0-6+rpi1) ... Setting up python3.7 (3.7.3-2+deb10u1) ... Setting up fontconfig (2.13.1-2) ... Regenerating fonts cache... done. Setting up libglx-mesa0:armhf (19.3.2-1~bpo10+1~rpt1) ... Setting up gcc-8 (8.3.0-6+rpi1) ... Setting up libxcb1-dev:armhf (1.13.1-2) ... Setting up libglx0:armhf (1.3.0-7~bpo10+1) ... Setting up dconf-gsettings-backend:armhf (0.30.1-2) ... Setting up libpango-1.0-0:armhf (1.42.4-7~deb10u1) ... Setting up libx11-dev:armhf (2:1.6.7-1) ... Setting up python3 (3.7.3-1) ... running python rtupdate hooks for python3.7... running python post-rtupdate hooks for python3.7... Setting up libcairo2:armhf (1.16.0-4+rpt1) ... Setting up libqt5network5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Setting up gcc (4:8.3.0-1+rpi2) ... Setting up libinput-bin (1.12.6-2) ... Setting up libqt5sql5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Setting up qtbase5-dev-tools (5.11.3+dfsg1-1+rpi1+deb10u3) ... Setting up libqt5xml5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Setting up libgl1:armhf (1.3.0-7~bpo10+1) ... Setting up libexpat1-dev:armhf (2.2.6-2+deb10u1) ... Setting up libgdk-pixbuf2.0-0:armhf (2.38.1+dfsg-1) ... Setting up libxext-dev:armhf (2:1.3.3-1+b2) ... Setting up libwacom-bin (0.32-1) ... Setting up libcups2:armhf (2.2.10-6+deb10u2) ... Setting up g++-8 (8.3.0-6+rpi1) ... Setting up libgdk-pixbuf2.0-bin (2.38.1+dfsg-1) ... Setting up libglx-dev:armhf (1.3.0-7~bpo10+1) ... Setting up libcairo-gobject2:armhf (1.16.0-4+rpt1) ... Setting up libpangoft2-1.0-0:armhf (1.42.4-7~deb10u1) ... Setting up python3-lib2to3 (3.7.3-1) ... Setting up libgl-dev:armhf (1.3.0-7~bpo10+1) ... Setting up libgtk-3-common (3.24.5-1+rpt2) ... Setting up libpangocairo-1.0-0:armhf (1.42.4-7~deb10u1) ... Setting up python3-pkg-resources (40.8.0-1) ... Setting up python3-distutils (3.7.3-1) ... Setting up dh-python (3.20190308) ... Setting up gsettings-desktop-schemas (3.28.1-1) ... Setting up libinput10:armhf (1.12.6-2) ... Setting up gtk-update-icon-cache (3.24.5-1+rpt2) ... Setting up libqt5sql5-sqlite:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Setting up libegl-dev:armhf (1.3.0-7~bpo10+1) ... Setting up libpython3.7-dev:armhf (3.7.3-2+deb10u1) ... Setting up libqt5gui5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Setting up python3-virtualenv (15.1.0+ds-2) ... Setting up libqt5widgets5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Setting up python3.7-dev (3.7.3-2+deb10u1) ... Setting up librsvg2-2:armhf (2.44.10-2.1+rpi1) ... Setting up libqt5printsupport5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Setting up virtualenv (15.1.0+ds-2) ... Setting up librsvg2-common:armhf (2.44.10-2.1+rpi1) ... Setting up g++ (4:8.3.0-1+rpi2) ... update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode Setting up libqt5opengl5:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Setting up build-essential (12.6) ... Setting up glib-networking:armhf (2.58.0-2) ... Setting up libgles-dev:armhf (1.3.0-7~bpo10+1) ... Setting up libgles2-mesa-dev:armhf (19.3.2-1~bpo10+1~rpt1) ... Setting up libpython3-dev:armhf (3.7.3-1) ... Setting up libsoup2.4-1:armhf (2.64.2-2) ... Setting up libqt5svg5:armhf (5.11.3-2) ... Setting up adwaita-icon-theme (3.30.1-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 python3-dev (3.7.3-1) ... Setting up qtbase5-dev:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Setting up qt5-default:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Setting up libsoup-gnome2.4-1:armhf (2.64.2-2) ... Setting up librest-0.7-0:armhf (0.8.1-1) ... Setting up libqt5opengl5-dev:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Setting up libgtk-3-0:armhf (3.24.5-1+rpt2) ... Setting up libgtk-3-bin (3.24.5-1+rpt2) ... Setting up qt5-gtk-platformtheme:armhf (5.11.3+dfsg1-1+rpi1+deb10u3) ... Processing triggers for libc-bin (2.28-10+rpi1) ... Processing triggers for systemd (241-7~deb10u3+rpi1) ... Processing triggers for man-db (2.8.5-2) ... Processing triggers for mime-support (3.62) ... Processing triggers for libgdk-pixbuf2.0-0:armhf (2.38.1+dfsg-1) ... ```
virtualenv -p python3 venv --download ```bash root@raspberrypi:~# virtualenv -p python3 venv --download Already using interpreter /usr/bin/python3 Using base prefix '/usr' New python executable in /root/venv/bin/python3 Also creating executable in /root/venv/bin/python Installing setuptools, pkg_resources, pip, wheel...done. ```
export MAKEFLAGS="-j$(cat /proc/cpuinfo | grep '^processor\s*:' | wc -l)" ```bash root@raspberrypi:~# export MAKEFLAGS="-j$(cat /proc/cpuinfo | grep '^processor\s*:' | wc -l)" ```
venv/bin/pip wheel --no-deps --no-binary pyqt5 --wheel-dir wheelhouse/ pyqt5 ```bash root@raspberrypi:~# venv/bin/pip wheel --no-deps --no-binary pyqt5 --wheel-dir wheelhouse/ pyqt5 Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple Collecting pyqt5 Downloading PyQt5-5.14.2.tar.gz (3.2 MB) |████████████████████████████████| 3.2 MB 4.8 MB/s Installing build dependencies ... done Getting requirements to build wheel ... done Preparing wheel metadata ... done Building wheels for collected packages: pyqt5 Building wheel for pyqt5 (PEP 517) ... done Created wheel for pyqt5: filename=PyQt5-5.14.2-cp35.cp36.cp37.cp38-abi3-manylinux2014_x86_64.whl size=4469018 sha256=5dff373c3cf17cb310c999e4a4d9759622553fe4eb45777ddcfff187afcc51f2 Stored in directory: /root/.cache/pip/wheels/1b/12/1d/887d197400e596b91b1cfe9f8f3bc4443499c65622909a6ad2 Successfully built pyqt5 ```
ls -la wheelhouse/ ```bash root@raspberrypi:~# ls -la wheelhouse/ total 4376 drwxr-xr-x 2 root root 4096 Apr 8 15:36 . drwx------ 7 root root 4096 Apr 8 14:47 .. -rw-r--r-- 1 root root 4469018 Apr 8 15:36 PyQt5-5.14.2-cp35.cp36.cp37.cp38-abi3-manylinux2014_x86_64.whl ```
rename 's/x86_64/'$(venv/bin/python -c 'import platform; print(platform.machine())')'/' wheelhouse/PyQt5-*.whl ```bash root@raspberrypi:~# rename 's/x86_64/'$(venv/bin/python -c 'import platform; print(platform.machine())')'/' wheelhouse/PyQt5-*.whl ```
ls -la wheelhouse/ ```bash root@raspberrypi:~# ls -la wheelhouse/ total 4376 drwxr-xr-x 2 root root 4096 Apr 8 15:37 . drwx------ 7 root root 4096 Apr 8 14:47 .. -rw-r--r-- 1 root root 4469018 Apr 8 15:36 PyQt5-5.14.2-cp35.cp36.cp37.cp38-abi3-manylinux2014_armv7l.whl ```
altendky commented 4 years ago

(it's a .whl but GitHub doesn't accept that file type...) PyQt5-5.14.2-cp35.cp36.cp37.cp38-abi3-manylinux2014_armv7l.zip

ssh root@piwhl_pyqt.hostedpi.com ```bash altendky@p1:~$ ssh root@piwhl_pyqt.hostedpi.com The authenticity of host 'piwhl_pyqt.hostedpi.com (2a00:1098:8:9d::1)' can't be established. ECDSA key fingerprint is SHA256:QHiUOQ+2EsXsEZJ/dpdmHLgaF+D7CC+B+U970e3gs6I. Are you sure you want to continue connecting (yes/no/[fingerprint])? yes Warning: Permanently added 'piwhl_pyqt.hostedpi.com,2a00:1098:8:9d::1' (ECDSA) to the list of known hosts. Linux raspberrypi 4.19.50-v7+ #896 SMP Thu Jun 20 16:11:44 BST 2019 armv7l The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. Last login: Mon Jul 1 14:58:15 2019 from 92.40.248.176 ```
mkdir wheelhouse ```bash root@raspberrypi:~# mkdir wheelhouse ```
apt update --yes ```bash root@raspberrypi:~# apt update --yes Get:1 http://archive.raspbian.org/raspbian buster InRelease [15.0 kB] Get:2 http://archive.raspberrypi.org/debian buster InRelease [25.1 kB] E: Repository 'http://archive.raspbian.org/raspbian buster InRelease' changed its 'Suite' value from 'testing' to 'stable' N: This must be accepted explicitly before updates for this repository can be applied. See apt-secure(8) manpage for details. Do you want to accept these changes and continue updating from this repository? [y/N] Y Get:3 http://archive.raspbian.org/raspbian buster/main armhf Packages [13.0 MB] Get:4 http://archive.raspberrypi.org/debian buster/main armhf Packages [280 kB] Fetched 13.3 MB in 11s (1,193 kB/s) Reading package lists... Done Building dependency tree Reading state information... Done 82 packages can be upgraded. Run 'apt list --upgradable' to see them. ```
apt install --yes python3 virtualenv apt-file ```bash root@raspberrypi:~# apt install --yes python3 virtualenv apt-file Reading package lists... Done Building dependency tree Reading state information... Done The following packages were automatically installed and are no longer required: gnupg-agent libncurses5 libperl5.24 rename tcpd Use 'apt autoremove' to remove them. The following additional packages will be installed: libapt-pkg-perl libexporter-tiny-perl liblist-moreutils-perl libmpdec2 libpython3-stdlib libpython3.7-minimal libpython3.7-stdlib libregexp-assemble-perl python-pip-whl python3-distutils python3-lib2to3 python3-minimal python3-pkg-resources python3-virtualenv python3.7 python3.7-minimal Suggested packages: python3-doc python3-tk python3-venv python3-setuptools python3.7-venv python3.7-doc binutils binfmt-support The following NEW packages will be installed: apt-file libapt-pkg-perl libexporter-tiny-perl liblist-moreutils-perl libmpdec2 libpython3-stdlib libpython3.7-minimal libpython3.7-stdlib libregexp-assemble-perl python-pip-whl python3 python3-distutils python3-lib2to3 python3-minimal python3-pkg-resources python3-virtualenv python3.7 python3.7-minimal virtualenv 0 upgraded, 19 newly installed, 0 to remove and 82 not upgraded. Need to get 6,551 kB of archives. After this operation, 26.0 MB of additional disk space will be used. Get:1 http://archive.raspbian.org/raspbian buster/main armhf libpython3.7-minimal armhf 3.7.3-2+deb10u1 [583 kB] Get:2 http://archive.raspberrypi.org/debian buster/main armhf python-pip-whl all 18.1-5+rpt1 [1,591 kB] Get:3 http://archive.raspbian.org/raspbian buster/main armhf python3.7-minimal armhf 3.7.3-2+deb10u1 [1,463 kB] Get:4 http://archive.raspbian.org/raspbian buster/main armhf python3-minimal armhf 3.7.3-1 [36.6 kB] Get:5 http://archive.raspbian.org/raspbian buster/main armhf libmpdec2 armhf 2.4.2-2 [67.2 kB] Get:6 http://archive.raspbian.org/raspbian buster/main armhf libpython3.7-stdlib armhf 3.7.3-2+deb10u1 [1,662 kB] Get:7 http://archive.raspbian.org/raspbian buster/main armhf python3.7 armhf 3.7.3-2+deb10u1 [330 kB] Get:8 http://archive.raspbian.org/raspbian buster/main armhf libpython3-stdlib armhf 3.7.3-1 [20.0 kB] Get:9 http://archive.raspbian.org/raspbian buster/main armhf python3 armhf 3.7.3-1 [61.5 kB] Get:10 http://archive.raspbian.org/raspbian buster/main armhf libapt-pkg-perl armhf 0.1.34+b1 [65.9 kB] Get:11 http://archive.raspbian.org/raspbian buster/main armhf libexporter-tiny-perl all 1.002001-1 [36.9 kB] Get:12 http://archive.raspbian.org/raspbian buster/main armhf liblist-moreutils-perl armhf 0.416-1+b3 [59.6 kB] Get:13 http://archive.raspbian.org/raspbian buster/main armhf libregexp-assemble-perl all 0.36-1 [86.6 kB] Get:14 http://archive.raspbian.org/raspbian buster/main armhf apt-file all 3.2.2 [38.5 kB] Get:15 http://archive.raspbian.org/raspbian buster/main armhf python3-lib2to3 all 3.7.3-1 [76.7 kB] Get:16 http://archive.raspbian.org/raspbian buster/main armhf python3-distutils all 3.7.3-1 [142 kB] Get:17 http://archive.raspbian.org/raspbian buster/main armhf python3-pkg-resources all 40.8.0-1 [153 kB] Get:18 http://archive.raspbian.org/raspbian buster/main armhf python3-virtualenv all 15.1.0+ds-2 [58.1 kB] Get:19 http://archive.raspbian.org/raspbian buster/main armhf virtualenv all 15.1.0+ds-2 [20.1 kB] Fetched 6,551 kB in 1s (11.0 MB/s) Selecting previously unselected package libpython3.7-minimal:armhf. (Reading database ... 84946 files and directories currently installed.) Preparing to unpack .../libpython3.7-minimal_3.7.3-2+deb10u1_armhf.deb ... Unpacking libpython3.7-minimal:armhf (3.7.3-2+deb10u1) ... Selecting previously unselected package python3.7-minimal. Preparing to unpack .../python3.7-minimal_3.7.3-2+deb10u1_armhf.deb ... Unpacking python3.7-minimal (3.7.3-2+deb10u1) ... Setting up libpython3.7-minimal:armhf (3.7.3-2+deb10u1) ... Setting up python3.7-minimal (3.7.3-2+deb10u1) ... Selecting previously unselected package python3-minimal. (Reading database ... 85187 files and directories currently installed.) Preparing to unpack .../python3-minimal_3.7.3-1_armhf.deb ... Unpacking python3-minimal (3.7.3-1) ... Selecting previously unselected package libmpdec2:armhf. Preparing to unpack .../libmpdec2_2.4.2-2_armhf.deb ... Unpacking libmpdec2:armhf (2.4.2-2) ... Selecting previously unselected package libpython3.7-stdlib:armhf. Preparing to unpack .../libpython3.7-stdlib_3.7.3-2+deb10u1_armhf.deb ... Unpacking libpython3.7-stdlib:armhf (3.7.3-2+deb10u1) ... Selecting previously unselected package python3.7. Preparing to unpack .../python3.7_3.7.3-2+deb10u1_armhf.deb ... Unpacking python3.7 (3.7.3-2+deb10u1) ... Selecting previously unselected package libpython3-stdlib:armhf. Preparing to unpack .../libpython3-stdlib_3.7.3-1_armhf.deb ... Unpacking libpython3-stdlib:armhf (3.7.3-1) ... Setting up python3-minimal (3.7.3-1) ... Selecting previously unselected package python3. (Reading database ... 85599 files and directories currently installed.) Preparing to unpack .../00-python3_3.7.3-1_armhf.deb ... Unpacking python3 (3.7.3-1) ... Selecting previously unselected package libapt-pkg-perl. Preparing to unpack .../01-libapt-pkg-perl_0.1.34+b1_armhf.deb ... Unpacking libapt-pkg-perl (0.1.34+b1) ... Selecting previously unselected package libexporter-tiny-perl. Preparing to unpack .../02-libexporter-tiny-perl_1.002001-1_all.deb ... Unpacking libexporter-tiny-perl (1.002001-1) ... Selecting previously unselected package liblist-moreutils-perl. Preparing to unpack .../03-liblist-moreutils-perl_0.416-1+b3_armhf.deb ... Unpacking liblist-moreutils-perl (0.416-1+b3) ... Selecting previously unselected package libregexp-assemble-perl. Preparing to unpack .../04-libregexp-assemble-perl_0.36-1_all.deb ... Unpacking libregexp-assemble-perl (0.36-1) ... Selecting previously unselected package apt-file. Preparing to unpack .../05-apt-file_3.2.2_all.deb ... Unpacking apt-file (3.2.2) ... Selecting previously unselected package python-pip-whl. Preparing to unpack .../06-python-pip-whl_18.1-5+rpt1_all.deb ... Unpacking python-pip-whl (18.1-5+rpt1) ... Selecting previously unselected package python3-lib2to3. Preparing to unpack .../07-python3-lib2to3_3.7.3-1_all.deb ... Unpacking python3-lib2to3 (3.7.3-1) ... Selecting previously unselected package python3-distutils. Preparing to unpack .../08-python3-distutils_3.7.3-1_all.deb ... Unpacking python3-distutils (3.7.3-1) ... Selecting previously unselected package python3-pkg-resources. Preparing to unpack .../09-python3-pkg-resources_40.8.0-1_all.deb ... Unpacking python3-pkg-resources (40.8.0-1) ... Selecting previously unselected package python3-virtualenv. Preparing to unpack .../10-python3-virtualenv_15.1.0+ds-2_all.deb ... Unpacking python3-virtualenv (15.1.0+ds-2) ... Selecting previously unselected package virtualenv. Preparing to unpack .../11-virtualenv_15.1.0+ds-2_all.deb ... Unpacking virtualenv (15.1.0+ds-2) ... Setting up libapt-pkg-perl (0.1.34+b1) ... Setting up python-pip-whl (18.1-5+rpt1) ... Setting up libmpdec2:armhf (2.4.2-2) ... Setting up libexporter-tiny-perl (1.002001-1) ... Setting up libregexp-assemble-perl (0.36-1) ... Setting up libpython3.7-stdlib:armhf (3.7.3-2+deb10u1) ... Setting up liblist-moreutils-perl (0.416-1+b3) ... Setting up apt-file (3.2.2) ... The system-wide cache is empty. You may want to run 'apt-file update' as root to update the cache. Setting up libpython3-stdlib:armhf (3.7.3-1) ... Setting up python3.7 (3.7.3-2+deb10u1) ... Setting up python3 (3.7.3-1) ... running python rtupdate hooks for python3.7... running python post-rtupdate hooks for python3.7... Setting up python3-lib2to3 (3.7.3-1) ... Setting up python3-pkg-resources (40.8.0-1) ... Setting up python3-distutils (3.7.3-1) ... Setting up python3-virtualenv (15.1.0+ds-2) ... Setting up virtualenv (15.1.0+ds-2) ... Processing triggers for libc-bin (2.28-10+rpi1) ... Processing triggers for man-db (2.8.5-2) ... Processing triggers for mime-support (3.62) ... ```
apt-file update ```bash root@raspberrypi:~# apt-file update Hit:1 http://archive.raspbian.org/raspbian buster InRelease Hit:2 http://archive.raspberrypi.org/debian buster InRelease Get:3 http://archive.raspbian.org/raspbian buster/main armhf Contents (deb) [39.8 MB] Get:4 http://archive.raspberrypi.org/debian buster/main armhf Contents (deb) [1,039 kB] Fetched 40.8 MB in 38s (1,086 kB/s) Reading package lists... Done Building dependency tree Reading state information... Done 82 packages can be upgraded. Run 'apt list --upgradable' to see them. ```
virtualenv -p python3 venv --download ```bash root@raspberrypi:~# virtualenv -p python3 venv --download Already using interpreter /usr/bin/python3 Using base prefix '/usr' New python executable in /root/venv/bin/python3 Also creating executable in /root/venv/bin/python Installing setuptools, pkg_resources, pip, wheel...done. ```
venv/bin/pip install wheelhouse/PyQt5-*.whl ```bash root@raspberrypi:~# venv/bin/pip install wheelhouse/PyQt5-*.whl Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple Processing ./wheelhouse/PyQt5-5.14.2-cp35.cp36.cp37.cp38-abi3-manylinux2014_armv7l.whl Collecting PyQt5-sip<13,>=12.7 Downloading https://www.piwheels.org/simple/pyqt5-sip/PyQt5_sip-12.7.2-cp37-cp37m-linux_armv7l.whl (272 kB) |████████████████████████████████| 272 kB 5.1 MB/s Installing collected packages: PyQt5-sip, PyQt5 Successfully installed PyQt5-5.14.2 PyQt5-sip-12.7.2 ```
find "$(venv/bin/python -c 'import pathlib; import PyQt5; print(pathlib.Path(PyQt5.__file__).parent)')" -name '*.so*' -exec bash -c 'echo -e \\n\\n--- {} ---; ldd {} ;' \; | tee blue && echo -e \\n\\n && sed -n 's/\s\+\(.\+\) => not found/\1/p' blue | xargs -t --max-lines=1 apt-file search | tee red && echo -e \\n ------ \\n && sed -n 's/^\(.\+\): .*/\1/p' red | sort | uniq ```bash root@raspberrypi:~# find "$(venv/bin/python -c 'import pathlib; import PyQt5; print(pathlib.Path(PyQt5.__file__).parent)')" -name '*.so*' -exec bash -c 'echo -e \\n\\n--- {} ---; ldd {} ;' \; | tee blue && echo -e \\n\\n && sed -n 's/\s\+\(.\+\) => not found/\1/p' blue | xargs -t --max-lines=1 apt-file search | tee red && echo -e \\n ------ \\n && sed -n 's/^\(.\+\): .*/\1/p' red | sort | uniq --- /root/venv/lib/python3.7/site-packages/PyQt5/pylupdate.abi3.so --- linux-vdso.so.1 (0x7eeed000) libQt5Xml.so.5 => not found libQt5Core.so.5 => not found libpthread.so.0 => /lib/arm-linux-gnueabihf/libpthread.so.0 (0x76eb4000) libatomic.so.1 => /usr/lib/arm-linux-gnueabihf/libatomic.so.1 (0x76e9b000) libstdc++.so.6 => /usr/lib/arm-linux-gnueabihf/libstdc++.so.6 (0x76d54000) libm.so.6 => /lib/arm-linux-gnueabihf/libm.so.6 (0x76cd2000) libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0x76ca5000) libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0x76b57000) /lib/ld-linux-armhf.so.3 (0x76f56000) --- /root/venv/lib/python3.7/site-packages/PyQt5/QtNetwork.abi3.so --- linux-vdso.so.1 (0x7e97b000) libQt5Network.so.5 => not found libQt5Core.so.5 => not found libpthread.so.0 => /lib/arm-linux-gnueabihf/libpthread.so.0 (0x76e7e000) libatomic.so.1 => /usr/lib/arm-linux-gnueabihf/libatomic.so.1 (0x76e65000) libstdc++.so.6 => /usr/lib/arm-linux-gnueabihf/libstdc++.so.6 (0x76d1e000) libm.so.6 => /lib/arm-linux-gnueabihf/libm.so.6 (0x76c9c000) libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0x76c6f000) libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0x76b21000) /lib/ld-linux-armhf.so.3 (0x76f5f000) --- /root/venv/lib/python3.7/site-packages/PyQt5/sip.cpython-37m-arm-linux-gnueabihf.so --- linux-vdso.so.1 (0x7ef9f000) libpthread.so.0 => /lib/arm-linux-gnueabihf/libpthread.so.0 (0x76e91000) libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0x76d43000) /lib/ld-linux-armhf.so.3 (0x76ee5000) --- /root/venv/lib/python3.7/site-packages/PyQt5/QtPrintSupport.abi3.so --- linux-vdso.so.1 (0x7eb3a000) libQt5PrintSupport.so.5 => not found libQt5Widgets.so.5 => not found libQt5Gui.so.5 => not found libQt5Core.so.5 => not found libGLESv2.so.2 => not found libpthread.so.0 => /lib/arm-linux-gnueabihf/libpthread.so.0 (0x76eb9000) libatomic.so.1 => /usr/lib/arm-linux-gnueabihf/libatomic.so.1 (0x76ea0000) libstdc++.so.6 => /usr/lib/arm-linux-gnueabihf/libstdc++.so.6 (0x76d59000) libm.so.6 => /lib/arm-linux-gnueabihf/libm.so.6 (0x76cd7000) libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0x76caa000) libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0x76b5c000) /lib/ld-linux-armhf.so.3 (0x76f1d000) --- /root/venv/lib/python3.7/site-packages/PyQt5/QtDBus.abi3.so --- linux-vdso.so.1 (0x7eca8000) libQt5DBus.so.5 => not found libQt5Core.so.5 => not found libpthread.so.0 => /lib/arm-linux-gnueabihf/libpthread.so.0 (0x76f1a000) libatomic.so.1 => /usr/lib/arm-linux-gnueabihf/libatomic.so.1 (0x76f01000) libstdc++.so.6 => /usr/lib/arm-linux-gnueabihf/libstdc++.so.6 (0x76dba000) libm.so.6 => /lib/arm-linux-gnueabihf/libm.so.6 (0x76d38000) libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0x76d0b000) libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0x76bbd000) /lib/ld-linux-armhf.so.3 (0x76f7a000) --- /root/venv/lib/python3.7/site-packages/PyQt5/QtTest.abi3.so --- linux-vdso.so.1 (0x7ee54000) libQt5Widgets.so.5 => not found libQt5Gui.so.5 => not found libQt5Test.so.5 => not found libQt5Core.so.5 => not found libGLESv2.so.2 => not found libpthread.so.0 => /lib/arm-linux-gnueabihf/libpthread.so.0 (0x76ec4000) libatomic.so.1 => /usr/lib/arm-linux-gnueabihf/libatomic.so.1 (0x76eab000) libstdc++.so.6 => /usr/lib/arm-linux-gnueabihf/libstdc++.so.6 (0x76d64000) libm.so.6 => /lib/arm-linux-gnueabihf/libm.so.6 (0x76ce2000) libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0x76cb5000) libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0x76b67000) /lib/ld-linux-armhf.so.3 (0x76f12000) --- /root/venv/lib/python3.7/site-packages/PyQt5/QtWidgets.abi3.so --- linux-vdso.so.1 (0x7effc000) libQt5Widgets.so.5 => not found libQt5Gui.so.5 => not found libQt5Core.so.5 => not found libGLESv2.so.2 => not found libpthread.so.0 => /lib/arm-linux-gnueabihf/libpthread.so.0 (0x76b3a000) libatomic.so.1 => /usr/lib/arm-linux-gnueabihf/libatomic.so.1 (0x76b21000) libstdc++.so.6 => /usr/lib/arm-linux-gnueabihf/libstdc++.so.6 (0x769da000) libm.so.6 => /lib/arm-linux-gnueabihf/libm.so.6 (0x76958000) libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0x7692b000) libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0x767dd000) /lib/ld-linux-armhf.so.3 (0x76f40000) --- /root/venv/lib/python3.7/site-packages/PyQt5/_QOpenGLFunctions_ES2.abi3.so --- linux-vdso.so.1 (0x7ef1c000) libQt5Gui.so.5 => not found libQt5Core.so.5 => not found libGLESv2.so.2 => not found libpthread.so.0 => /lib/arm-linux-gnueabihf/libpthread.so.0 (0x76eba000) libatomic.so.1 => /usr/lib/arm-linux-gnueabihf/libatomic.so.1 (0x76ea1000) libstdc++.so.6 => /usr/lib/arm-linux-gnueabihf/libstdc++.so.6 (0x76d5a000) libm.so.6 => /lib/arm-linux-gnueabihf/libm.so.6 (0x76cd8000) libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0x76cab000) libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0x76b5d000) /lib/ld-linux-armhf.so.3 (0x76f05000) --- /root/venv/lib/python3.7/site-packages/PyQt5/Qt.abi3.so --- linux-vdso.so.1 (0x7ef9b000) libpthread.so.0 => /lib/arm-linux-gnueabihf/libpthread.so.0 (0x76efd000) libstdc++.so.6 => /usr/lib/arm-linux-gnueabihf/libstdc++.so.6 (0x76db6000) libm.so.6 => /lib/arm-linux-gnueabihf/libm.so.6 (0x76d34000) libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0x76d07000) libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0x76bb9000) /lib/ld-linux-armhf.so.3 (0x76f39000) --- /root/venv/lib/python3.7/site-packages/PyQt5/QtXml.abi3.so --- linux-vdso.so.1 (0x7eda1000) libQt5Xml.so.5 => not found libQt5Core.so.5 => not found libpthread.so.0 => /lib/arm-linux-gnueabihf/libpthread.so.0 (0x76f2e000) libatomic.so.1 => /usr/lib/arm-linux-gnueabihf/libatomic.so.1 (0x76f15000) libstdc++.so.6 => /usr/lib/arm-linux-gnueabihf/libstdc++.so.6 (0x76dce000) libm.so.6 => /lib/arm-linux-gnueabihf/libm.so.6 (0x76d4c000) libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0x76d1f000) libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0x76bd1000) /lib/ld-linux-armhf.so.3 (0x76f9f000) --- /root/venv/lib/python3.7/site-packages/PyQt5/pyrcc.abi3.so --- linux-vdso.so.1 (0x7ee9c000) libQt5Xml.so.5 => not found libQt5Core.so.5 => not found libpthread.so.0 => /lib/arm-linux-gnueabihf/libpthread.so.0 (0x76f01000) libatomic.so.1 => /usr/lib/arm-linux-gnueabihf/libatomic.so.1 (0x76ee8000) libstdc++.so.6 => /usr/lib/arm-linux-gnueabihf/libstdc++.so.6 (0x76da1000) libm.so.6 => /lib/arm-linux-gnueabihf/libm.so.6 (0x76d1f000) libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0x76cf2000) libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0x76ba4000) /lib/ld-linux-armhf.so.3 (0x76f46000) --- /root/venv/lib/python3.7/site-packages/PyQt5/QtSql.abi3.so --- linux-vdso.so.1 (0x7eda7000) libQt5Widgets.so.5 => not found libQt5Gui.so.5 => not found libQt5Sql.so.5 => not found libQt5Core.so.5 => not found libGLESv2.so.2 => not found libpthread.so.0 => /lib/arm-linux-gnueabihf/libpthread.so.0 (0x76f0d000) libatomic.so.1 => /usr/lib/arm-linux-gnueabihf/libatomic.so.1 (0x76ef4000) libstdc++.so.6 => /usr/lib/arm-linux-gnueabihf/libstdc++.so.6 (0x76dad000) libm.so.6 => /lib/arm-linux-gnueabihf/libm.so.6 (0x76d2b000) libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0x76cfe000) libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0x76bb0000) /lib/ld-linux-armhf.so.3 (0x76f92000) --- /root/venv/lib/python3.7/site-packages/PyQt5/QtGui.abi3.so --- linux-vdso.so.1 (0x7ecc9000) libQt5Gui.so.5 => not found libQt5Core.so.5 => not found libGLESv2.so.2 => not found libpthread.so.0 => /lib/arm-linux-gnueabihf/libpthread.so.0 (0x76d36000) libatomic.so.1 => /usr/lib/arm-linux-gnueabihf/libatomic.so.1 (0x76d1d000) libstdc++.so.6 => /usr/lib/arm-linux-gnueabihf/libstdc++.so.6 (0x76bd6000) libm.so.6 => /lib/arm-linux-gnueabihf/libm.so.6 (0x76b54000) libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0x76b27000) libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0x769d9000) /lib/ld-linux-armhf.so.3 (0x76fac000) --- /root/venv/lib/python3.7/site-packages/PyQt5/QtOpenGL.abi3.so --- linux-vdso.so.1 (0x7ed5c000) libQt5OpenGL.so.5 => not found libQt5Widgets.so.5 => not found libQt5Gui.so.5 => not found libQt5Core.so.5 => not found libGLESv2.so.2 => not found libpthread.so.0 => /lib/arm-linux-gnueabihf/libpthread.so.0 (0x76f36000) libatomic.so.1 => /usr/lib/arm-linux-gnueabihf/libatomic.so.1 (0x76f1d000) libstdc++.so.6 => /usr/lib/arm-linux-gnueabihf/libstdc++.so.6 (0x76dd6000) libm.so.6 => /lib/arm-linux-gnueabihf/libm.so.6 (0x76d54000) libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0x76d27000) libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0x76bd9000) /lib/ld-linux-armhf.so.3 (0x76f8a000) --- /root/venv/lib/python3.7/site-packages/PyQt5/QtCore.abi3.so --- linux-vdso.so.1 (0x7ec89000) libQt5Core.so.5 => not found libpthread.so.0 => /lib/arm-linux-gnueabihf/libpthread.so.0 (0x76d34000) libatomic.so.1 => /usr/lib/arm-linux-gnueabihf/libatomic.so.1 (0x76d1b000) libstdc++.so.6 => /usr/lib/arm-linux-gnueabihf/libstdc++.so.6 (0x76bd4000) libm.so.6 => /lib/arm-linux-gnueabihf/libm.so.6 (0x76b52000) libgcc_s.so.1 => /lib/arm-linux-gnueabihf/libgcc_s.so.1 (0x76b25000) libc.so.6 => /lib/arm-linux-gnueabihf/libc.so.6 (0x769d7000) /lib/ld-linux-armhf.so.3 (0x76f8c000) apt-file search libQt5Xml.so.5 libqt5xml5: /usr/lib/arm-linux-gnueabihf/libQt5Xml.so.5 libqt5xml5: /usr/lib/arm-linux-gnueabihf/libQt5Xml.so.5.11 libqt5xml5: /usr/lib/arm-linux-gnueabihf/libQt5Xml.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Xml.so.5 apt-file search libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Core.so.5 apt-file search libQt5Network.so.5 libqt5network5: /usr/lib/arm-linux-gnueabihf/libQt5Network.so.5 libqt5network5: /usr/lib/arm-linux-gnueabihf/libQt5Network.so.5.11 libqt5network5: /usr/lib/arm-linux-gnueabihf/libQt5Network.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Network.so.5 apt-file search libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Core.so.5 apt-file search libQt5PrintSupport.so.5 libqt5printsupport5: /usr/lib/arm-linux-gnueabihf/libQt5PrintSupport.so.5 libqt5printsupport5: /usr/lib/arm-linux-gnueabihf/libQt5PrintSupport.so.5.11 libqt5printsupport5: /usr/lib/arm-linux-gnueabihf/libQt5PrintSupport.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5PrintSupport.so.5 apt-file search libQt5Widgets.so.5 libqt5widgets5: /usr/lib/arm-linux-gnueabihf/libQt5Widgets.so.5 libqt5widgets5: /usr/lib/arm-linux-gnueabihf/libQt5Widgets.so.5.11 libqt5widgets5: /usr/lib/arm-linux-gnueabihf/libQt5Widgets.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Widgets.so.5 apt-file search libQt5Gui.so.5 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5.11 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Gui.so.5 apt-file search libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Core.so.5 apt-file search libGLESv2.so.2 libgles2: /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2 libgles2: /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2.1.0 apt-file search libQt5DBus.so.5 libqt5dbus5: /usr/lib/arm-linux-gnueabihf/libQt5DBus.so.5 libqt5dbus5: /usr/lib/arm-linux-gnueabihf/libQt5DBus.so.5.11 libqt5dbus5: /usr/lib/arm-linux-gnueabihf/libQt5DBus.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5DBus.so.5 apt-file search libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Core.so.5 apt-file search libQt5Widgets.so.5 libqt5widgets5: /usr/lib/arm-linux-gnueabihf/libQt5Widgets.so.5 libqt5widgets5: /usr/lib/arm-linux-gnueabihf/libQt5Widgets.so.5.11 libqt5widgets5: /usr/lib/arm-linux-gnueabihf/libQt5Widgets.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Widgets.so.5 apt-file search libQt5Gui.so.5 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5.11 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Gui.so.5 apt-file search libQt5Test.so.5 libqt5test5: /usr/lib/arm-linux-gnueabihf/libQt5Test.so.5 libqt5test5: /usr/lib/arm-linux-gnueabihf/libQt5Test.so.5.11 libqt5test5: /usr/lib/arm-linux-gnueabihf/libQt5Test.so.5.11.3 apt-file search libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Core.so.5 apt-file search libGLESv2.so.2 libgles2: /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2 libgles2: /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2.1.0 apt-file search libQt5Widgets.so.5 libqt5widgets5: /usr/lib/arm-linux-gnueabihf/libQt5Widgets.so.5 libqt5widgets5: /usr/lib/arm-linux-gnueabihf/libQt5Widgets.so.5.11 libqt5widgets5: /usr/lib/arm-linux-gnueabihf/libQt5Widgets.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Widgets.so.5 apt-file search libQt5Gui.so.5 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5.11 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Gui.so.5 apt-file search libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Core.so.5 apt-file search libGLESv2.so.2 libgles2: /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2 libgles2: /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2.1.0 apt-file search libQt5Gui.so.5 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5.11 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Gui.so.5 apt-file search libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Core.so.5 apt-file search libGLESv2.so.2 libgles2: /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2 libgles2: /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2.1.0 apt-file search libQt5Xml.so.5 libqt5xml5: /usr/lib/arm-linux-gnueabihf/libQt5Xml.so.5 libqt5xml5: /usr/lib/arm-linux-gnueabihf/libQt5Xml.so.5.11 libqt5xml5: /usr/lib/arm-linux-gnueabihf/libQt5Xml.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Xml.so.5 apt-file search libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Core.so.5 apt-file search libQt5Xml.so.5 libqt5xml5: /usr/lib/arm-linux-gnueabihf/libQt5Xml.so.5 libqt5xml5: /usr/lib/arm-linux-gnueabihf/libQt5Xml.so.5.11 libqt5xml5: /usr/lib/arm-linux-gnueabihf/libQt5Xml.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Xml.so.5 apt-file search libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Core.so.5 apt-file search libQt5Widgets.so.5 libqt5widgets5: /usr/lib/arm-linux-gnueabihf/libQt5Widgets.so.5 libqt5widgets5: /usr/lib/arm-linux-gnueabihf/libQt5Widgets.so.5.11 libqt5widgets5: /usr/lib/arm-linux-gnueabihf/libQt5Widgets.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Widgets.so.5 apt-file search libQt5Gui.so.5 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5.11 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Gui.so.5 apt-file search libQt5Sql.so.5 libqt5sql5: /usr/lib/arm-linux-gnueabihf/libQt5Sql.so.5 libqt5sql5: /usr/lib/arm-linux-gnueabihf/libQt5Sql.so.5.11 libqt5sql5: /usr/lib/arm-linux-gnueabihf/libQt5Sql.so.5.11.3 apt-file search libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Core.so.5 apt-file search libGLESv2.so.2 libgles2: /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2 libgles2: /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2.1.0 apt-file search libQt5Gui.so.5 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5.11 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Gui.so.5 apt-file search libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Core.so.5 apt-file search libGLESv2.so.2 libgles2: /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2 libgles2: /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2.1.0 apt-file search libQt5OpenGL.so.5 libqt5opengl5: /usr/lib/arm-linux-gnueabihf/libQt5OpenGL.so.5 libqt5opengl5: /usr/lib/arm-linux-gnueabihf/libQt5OpenGL.so.5.11 libqt5opengl5: /usr/lib/arm-linux-gnueabihf/libQt5OpenGL.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5OpenGL.so.5 apt-file search libQt5Widgets.so.5 libqt5widgets5: /usr/lib/arm-linux-gnueabihf/libQt5Widgets.so.5 libqt5widgets5: /usr/lib/arm-linux-gnueabihf/libQt5Widgets.so.5.11 libqt5widgets5: /usr/lib/arm-linux-gnueabihf/libQt5Widgets.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Widgets.so.5 apt-file search libQt5Gui.so.5 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5.11 libqt5gui5: /usr/lib/arm-linux-gnueabihf/libQt5Gui.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Gui.so.5 apt-file search libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Core.so.5 apt-file search libGLESv2.so.2 libgles2: /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2 libgles2: /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2.1.0 apt-file search libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11 libqt5core5a: /usr/lib/arm-linux-gnueabihf/libQt5Core.so.5.11.3 wolfram-engine: /opt/Wolfram/WolframEngine/12.0/SystemFiles/Libraries/Linux-ARM/Qt/lib/libQt5Core.so.5 ------ libgles2 libqt5core5a libqt5dbus5 libqt5gui5 libqt5network5 libqt5opengl5 libqt5printsupport5 libqt5sql5 libqt5test5 libqt5widgets5 libqt5xml5 wolfram-engine ```

Packages providing the missing .so files:

I X-forwarded and ran below and saw an empty widget shown. Not much of a test but... it ran.

apt install --yes libqt5widgets5
venv/bin/python x.py
import PyQt5.QtWidgets

application = PyQt5.QtWidgets.QApplication([])
widget = PyQt5.QtWidgets.QWidget()
print('about to show')
widget.show()
print('about to exec')
application.exec()
altendky commented 4 years ago

I don't know what the build preferences are for piwheels. Probably don't want manylinux2014 since python3-pip isn't new enough to handle it (even if I would personally almost always use a virtualenv or venv). I don't know if we generally build against new (maximum features) or old (maximum compatibility) system libraries. I haven't compared this wheel against the official PyQt5 wheels to make sure they contain the expected support.

Let me know what the next step is. Thanks.

altendky commented 4 years ago

@bennuttall, any chance you have time to guide me on the steps to take to get from my 'process' above to whatever files piwheels needs to do the builds?

frak0d commented 3 years ago

(it's a .whl but GitHub doesn't accept that file type...) PyQt5-5.14.2-cp35.cp36.cp37.cp38-abi3-manylinux2014_armv7l.zip

Doesn't it have QML support ?

I have a PyQt5 5.15 wheel with qml and android support. it is 15mb. I had extracted it from "Pydroid" app from playstore (some russian dude built that wheel)

Here is the wheel :- (rename it from .zip to .whl) PyQt5-5.15.0-py3-none-any.zip

Adress of that russian guy :- (he doesn't reply emails so you might want to visit him if you want) https://maps.app.goo.gl/YKiHfiPe3wTYvrVK9