Coder Social home page Coder Social logo

flightaware / firestarter Goto Github PK

View Code? Open in Web Editor NEW
28.0 28.0 11.0 6 MB

Getting started with FlightAware Firehose

Home Page: https://flightaware.com/commercial/firehose/

License: BSD 3-Clause "New" or "Revised" License

Makefile 2.04% Dockerfile 2.68% Python 91.05% HTML 3.20% Shell 1.03%
docker docker-compose flightaware-firehose-service python3

firestarter's People

Contributors

bovine avatar conej730 avatar dependabot[bot] avatar dogrock avatar maryryang avatar maryryang2 avatar nasageek avatar pm-conej avatar polastre avatar resuna avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

firestarter's Issues

db-updater suggestion

I wanted to see the positions table's contents but the postgresql-client wasn't installed. (That's the only one I checked for.) I didn't want to install it while in the container, so I added it to the db-updater Docker file which worked nicely. On line 5 I changed:

RUN apt-get update && apt-get install -y libpq-dev gcc make sqlite3

to

RUN apt-get update && apt-get install -y libpq-dev gcc make sqlite3 postgresql-client

Great app and service, btw! Lots of fun digging into it :)

NaN:NaN appearing on web interface for cancelled flights

On the web demo application, cancelled flights are appearing on the arrivals board with an arrival time of NaN:NaN. The solution might be to not include cancelled flights on the arrivals board since they didn't actually arrive.

Service 'fids' failed to build after Firestarter Docker Compose

First of all - thanks for building this quick start repo! Excited to dig in.

OS/Docker/Compose Details

kellen@kellen-XPS-15-9560:~$ lsb_release -a
No LSB modules are available.
Distributor ID:	Ubuntu
Description:	Ubuntu 20.04.2 LTS
Release:	20.04
Codename:	focal
kellen@kellen-XPS-15-9560:~$ docker version
Client: Docker Engine - Community
 Version:           20.10.8
 API version:       1.41
 Go version:        go1.16.6
 Git commit:        3967b7d
 Built:             Fri Jul 30 19:54:27 2021
 OS/Arch:           linux/amd64
 Context:           default
 Experimental:      true

Server: Docker Engine - Community
 Engine:
  Version:          20.10.8
  API version:      1.41 (minimum version 1.12)
  Go version:       go1.16.6
  Git commit:       75249d8
  Built:            Fri Jul 30 19:52:33 2021
  OS/Arch:          linux/amd64
  Experimental:     false
 containerd:
  Version:          1.4.9
  GitCommit:        e25210fe30a0a703442421b0f60afac609f950a3
 runc:
  Version:          1.0.1
  GitCommit:        v1.0.1-0-g4144b63
 docker-init:
  Version:          0.19.0
  GitCommit:        de40ad0
kellen@kellen-XPS-15-9560:~$ docker-compose version
docker-compose version 1.25.0, build unknown
docker-py version: 4.1.0
CPython version: 3.8.10
OpenSSL version: OpenSSL 1.1.1f  31 Mar 2020

I started following the 'Connect to Firehose' steps outlined here.

The port seems to be open

kellen@kellen-XPS-15-9560:~$ openssl s_client -host firehose.flightaware.com -port 1501
CONNECTED(00000003)
...Certs & Cert Chains...

But then I run into several errors while pulling & creating containers.

kellen@kellen-XPS-15-9560:~/code/firestarter$ docker-compose pull && docker-compose up -d

.. complete command output at the end of issue...

Processing triggers for libc-bin (2.28-10) ...
npm WARN npm npm does not support Node.js v10.24.0
npm WARN npm You should probably upgrade to a newer version of node as we
npm WARN npm can't make any promises that npm will work with this version.
npm WARN npm Supported releases of Node.js are the latest release of 4, 6, 7, 8, 9.
npm WARN npm You can find the latest version at https://nodejs.org/
npm WARN [email protected] had bundled packages that do not match the required version(s). They have been replaced with non-bundled versions.

npm ERR! code EAI_AGAIN
npm ERR! errno EAI_AGAIN
npm ERR! request to https://registry.npmjs.org/@npmcli%2frun-script failed, reason: getaddrinfo EAI_AGAIN registry.npmjs.org registry.npmjs.org:443

npm ERR! A complete log of this run can be found in:
npm ERR!     /root/.npm/_logs/2021-09-07T16_43_24_227Z-debug.log
ERROR: Service 'fids' failed to build: The command '/bin/sh -c apt-get update && 	apt-get install -y libpq-dev gcc npm make && 	npm install npm@latest -g' returned a non-zero code: 1

Any suggestions for a successful build? I can't find the /root/.npm/_logs directory to share/read the log file from the build unfortunately.

Thanks!

Here is my firestarter environment file

kellen@kellen-XPS-15-9560:~/code/firestarter$ cat .env
FH_USERNAME=kellenschroeter
FH_APIKEY=4f704[OMIT]
SERVER=firehose.flightaware.com
INIT_CMD_ARGS=events "flifo departure arrival cancellation position"
GOOGLE_MAPS_API_KEY=key

kellen@kellen-XPS-15-9560:~/code/firestarter$ docker-compose pull && docker-compose up -d
Pulling zookeeper   ... done
Pulling kafka       ... done
Pulling timescaledb ... done
Creating network "firestarter_internal" with the default driver
Creating volume "firestarter_data" with default driver
Creating volume "firestarter_position_data" with default driver
Creating volume "firestarter_kafka_data" with default driver
Creating volume "firestarter_zookeeper_data" with default driver
Building connector
Step 1/16 : FROM python:3.8-slim-buster
3.8-slim-buster: Pulling from library/python
a330b6cecb98: Pull complete
319bfff7a4e7: Pull complete
e16783809314: Pull complete
2331071d0972: Pull complete
36947b3535f8: Pull complete
Digest: sha256:7e732593f25983fa7d4b2d54444be4a785f2397c1cf2f815d2e3638337eee012
Status: Downloaded newer image for python:3.8-slim-buster
 ---> 4728acd2148c
Step 2/16 : LABEL org.opencontainers.image.source=https://github.com/flightaware/firestarter
 ---> Running in 33716660a055
Removing intermediate container 33716660a055
 ---> e6b1fbb22727
Step 3/16 : RUN apt-get update && apt-get install -y make
 ---> Running in bd59aaa34e8c
Get:1 http://security.debian.org/debian-security buster/updates InRelease [65.4 kB]
Get:2 http://deb.debian.org/debian buster InRelease [122 kB]
Get:3 http://deb.debian.org/debian buster-updates InRelease [51.9 kB]
Get:4 http://security.debian.org/debian-security buster/updates/main amd64 Packages [302 kB]
Get:5 http://deb.debian.org/debian buster/main amd64 Packages [7907 kB]
Get:6 http://deb.debian.org/debian buster-updates/main amd64 Packages [15.2 kB]
Fetched 8464 kB in 2s (3986 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Suggested packages:
  make-doc
The following NEW packages will be installed:
  make
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 341 kB of archives.
After this operation, 1327 kB of additional disk space will be used.
Get:1 http://deb.debian.org/debian buster/main amd64 make amd64 4.2.1-1.2 [341 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 341 kB in 0s (2057 kB/s)
Selecting previously unselected package make.
(Reading database ... 6840 files and directories currently installed.)
Preparing to unpack .../make_4.2.1-1.2_amd64.deb ...
Unpacking make (4.2.1-1.2) ...
Setting up make (4.2.1-1.2) ...
Removing intermediate container bd59aaa34e8c
 ---> ab3191ffc735
Step 4/16 : RUN id -u firestarter || useradd -u 8081 firestarter -c "FIRESTARTER User" -m -s /bin/sh
 ---> Running in eeb99ff63b14
id: ‘firestarter’: no such user
Removing intermediate container eeb99ff63b14
 ---> 093d3adca611
Step 5/16 : USER firestarter
 ---> Running in 57f9688575ed
Removing intermediate container 57f9688575ed
 ---> f507b6868323
Step 6/16 : WORKDIR /home/firestarter
 ---> Running in d68f49486768
Removing intermediate container d68f49486768
 ---> cdcd350a27a9
Step 7/16 : COPY --chown=firestarter Makefile.inc .
 ---> 6b8be73feed1
Step 8/16 : RUN mkdir app
 ---> Running in d83301bf7577
Removing intermediate container d83301bf7577
 ---> 4739826b580d
Step 9/16 : WORKDIR /home/firestarter/app
 ---> Running in 7a8bd1c973b4
Removing intermediate container 7a8bd1c973b4
 ---> 27f3eb39d2e7
Step 10/16 : COPY --chown=firestarter connector/requirements ./requirements
 ---> 9b7c68eb9f64
Step 11/16 : COPY --chown=firestarter connector/Makefile .
 ---> eb4f90fc6cce
Step 12/16 : RUN make docker-setup
 ---> Running in 359b76c03110
test -d venv || python3 -m venv venv
. venv/bin/activate && python3 -m pip install pip-tools
Collecting pip-tools
  Downloading pip_tools-6.2.0-py3-none-any.whl (46 kB)
Collecting pep517
  Downloading pep517-0.11.0-py2.py3-none-any.whl (19 kB)
Requirement already satisfied: pip>=20.3 in ./venv/lib/python3.8/site-packages (from pip-tools) (21.1.1)
Collecting click>=7
  Downloading click-8.0.1-py3-none-any.whl (97 kB)
Requirement already satisfied: setuptools in ./venv/lib/python3.8/site-packages (from pip-tools) (56.0.0)
Collecting wheel
  Downloading wheel-0.37.0-py2.py3-none-any.whl (35 kB)
Collecting tomli
  Downloading tomli-1.2.1-py3-none-any.whl (11 kB)
Installing collected packages: tomli, wheel, pep517, click, pip-tools
Successfully installed click-8.0.1 pep517-0.11.0 pip-tools-6.2.0 tomli-1.2.1 wheel-0.37.0
WARNING: You are using pip version 21.1.1; however, version 21.2.4 is available.
You should consider upgrading via the '/home/firestarter/app/venv/bin/python3 -m pip install --upgrade pip' command.
. venv/bin/activate && make -C requirements all
make[1]: Entering directory '/home/firestarter/app/requirements'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/home/firestarter/app/requirements'
. venv/bin/activate && venv/bin/pip-sync requirements/dev.txt requirements/base.txt
Collecting appdirs==1.4.3
  Downloading appdirs-1.4.3-py2.py3-none-any.whl (12 kB)
Collecting astroid==2.3.3
  Downloading astroid-2.3.3-py3-none-any.whl (205 kB)
Collecting black==20.8b1
  Downloading black-20.8b1.tar.gz (1.1 MB)
  Installing build dependencies: started
  Installing build dependencies: finished with status 'done'
  Getting requirements to build wheel: started
  Getting requirements to build wheel: finished with status 'done'
    Preparing wheel metadata: started
    Preparing wheel metadata: finished with status 'done'
Collecting click==7.1.2
  Downloading click-7.1.2-py2.py3-none-any.whl (82 kB)
Collecting confluent-kafka==1.4.2
  Downloading confluent_kafka-1.4.2-cp38-cp38-manylinux1_x86_64.whl (8.1 MB)
Collecting isort==4.3.21
  Downloading isort-4.3.21-py2.py3-none-any.whl (42 kB)
Collecting lazy-object-proxy==1.4.3
  Downloading lazy_object_proxy-1.4.3-cp38-cp38-manylinux1_x86_64.whl (58 kB)
Collecting mccabe==0.6.1
  Downloading mccabe-0.6.1-py2.py3-none-any.whl (8.6 kB)
Collecting mypy==0.740
  Downloading mypy-0.740-cp38-cp38-manylinux1_x86_64.whl (23.9 MB)
Collecting mypy-extensions==0.4.3
  Downloading mypy_extensions-0.4.3-py2.py3-none-any.whl (4.5 kB)
Collecting pathspec==0.8.0
  Downloading pathspec-0.8.0-py2.py3-none-any.whl (28 kB)
Collecting pylint==2.4.4
  Downloading pylint-2.4.4-py3-none-any.whl (302 kB)
Collecting regex==2020.4.4
  Downloading regex-2020.4.4-cp38-cp38-manylinux2010_x86_64.whl (691 kB)
Collecting six==1.14.0
  Downloading six-1.14.0-py2.py3-none-any.whl (10 kB)
Collecting toml==0.10.2
  Downloading toml-0.10.2-py2.py3-none-any.whl (16 kB)
Collecting typed-ast==1.4.1
  Downloading typed_ast-1.4.1-cp38-cp38-manylinux1_x86_64.whl (768 kB)
Collecting typing-extensions==3.7.4.2
  Downloading typing_extensions-3.7.4.2-py3-none-any.whl (22 kB)
Collecting wrapt==1.11.2
  Downloading wrapt-1.11.2.tar.gz (27 kB)
Building wheels for collected packages: black, wrapt
  Building wheel for black (PEP 517): started
  Building wheel for black (PEP 517): finished with status 'done'
  Created wheel for black: filename=black-20.8b1-py3-none-any.whl size=124196 sha256=e90d402c0d6e28b7e00e883e9283a2608a07a85b433d345f17477b00072a5ad0
  Stored in directory: /home/firestarter/.cache/pip/wheels/95/a4/59/10cd5378d52f92cdb45025f040e4686e10ae5217961c25fd66
  Building wheel for wrapt (setup.py): started
  Building wheel for wrapt (setup.py): finished with status 'done'
  Created wheel for wrapt: filename=wrapt-1.11.2-py3-none-any.whl size=19591 sha256=deead377626fd56f43c85027626e39ecf4d5a6e365286ee03339468274d5e9ee
  Stored in directory: /home/firestarter/.cache/pip/wheels/52/25/16/7e228f52ee876e9c9c66dfd6eaf6fb2f73f18629a74dcf7045
Successfully built black wrapt
Installing collected packages: wrapt, six, lazy-object-proxy, typing-extensions, typed-ast, toml, regex, pathspec, mypy-extensions, mccabe, isort, click, astroid, appdirs, pylint, mypy, confluent-kafka, black
  Attempting uninstall: click
    Found existing installation: click 8.0.1
    Uninstalling click-8.0.1:
      Successfully uninstalled click-8.0.1
Successfully installed appdirs-1.4.3 astroid-2.3.3 black-20.8b1 click-7.1.2 confluent-kafka-1.4.2 isort-4.3.21 lazy-object-proxy-1.4.3 mccabe-0.6.1 mypy-0.740 mypy-extensions-0.4.3 pathspec-0.8.0 pylint-2.4.4 regex-2020.4.4 six-1.14.0 toml-0.10.2 typed-ast-1.4.1 typing-extensions-3.7.4.2 wrapt-1.11.2
WARNING: You are using pip version 21.1.1; however, version 21.2.4 is available.
You should consider upgrading via the '/home/firestarter/app/venv/bin/python3 -m pip install --upgrade pip' command.
Removing intermediate container 359b76c03110
 ---> 4eb29d5e397c
Step 13/16 : ENV VIRTUAL_ENV=./venv
 ---> Running in 9f16dc29c206
Removing intermediate container 9f16dc29c206
 ---> 8bb48b11b2ed
Step 14/16 : ENV PATH="$VIRTUAL_ENV/bin:$PATH"
 ---> Running in 42f2673bd9f2
Removing intermediate container 42f2673bd9f2
 ---> a9a8e2ad70fe
Step 15/16 : COPY --chown=firestarter connector/main.py .
 ---> f7427191acd7
Step 16/16 : CMD ["python3", "main.py"]
 ---> Running in d7d4f6fce7f7
Removing intermediate container d7d4f6fce7f7
 ---> 8cfcd0105165

Successfully built 8cfcd0105165
Successfully tagged ghcr.io/flightaware/firestarter/firestarter_connector:latest
WARNING: Image for service connector was built because it did not already exist. To rebuild this image you must use `docker-compose build` or `docker-compose up --build`.
Building db-updater
Step 1/17 : FROM python:3.8-slim-buster
 ---> 4728acd2148c
Step 2/17 : LABEL org.opencontainers.image.source=https://github.com/flightaware/firestarter
 ---> Using cache
 ---> e6b1fbb22727
Step 3/17 : RUN apt-get update && apt-get install -y libpq-dev gcc make sqlite3
 ---> Running in ceee8fbb1f90
Get:1 http://deb.debian.org/debian buster InRelease [122 kB]
Get:2 http://security.debian.org/debian-security buster/updates InRelease [65.4 kB]
Get:3 http://security.debian.org/debian-security buster/updates/main amd64 Packages [302 kB]
Get:4 http://deb.debian.org/debian buster-updates InRelease [51.9 kB]
Get:5 http://deb.debian.org/debian buster/main amd64 Packages [7907 kB]
Get:6 http://deb.debian.org/debian buster-updates/main amd64 Packages [15.2 kB]
Fetched 8464 kB in 2s (3866 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
  binutils binutils-common binutils-x86-64-linux-gnu cpp cpp-8 gcc-8
  krb5-locales libasan5 libatomic1 libbinutils libc-dev-bin libc6-dev libcc1-0
  libgcc-8-dev libgomp1 libgssapi-krb5-2 libisl19 libitm1 libk5crypto3
  libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.4-2 libldap-common liblsan0
  libmpc3 libmpfr6 libmpx2 libpq5 libquadmath0 libsasl2-2 libsasl2-modules
  libsasl2-modules-db libtsan0 libubsan1 linux-libc-dev manpages manpages-dev
Suggested packages:
  binutils-doc cpp-doc gcc-8-locales gcc-multilib autoconf automake libtool
  flex bison gdb gcc-doc gcc-8-multilib gcc-8-doc libgcc1-dbg libgomp1-dbg
  libitm1-dbg libatomic1-dbg libasan5-dbg liblsan0-dbg libtsan0-dbg
  libubsan1-dbg libmpx2-dbg libquadmath0-dbg glibc-doc krb5-doc krb5-user
  postgresql-doc-11 libsasl2-modules-gssapi-mit
  | libsasl2-modules-gssapi-heimdal libsasl2-modules-ldap libsasl2-modules-otp
  libsasl2-modules-sql make-doc man-browser sqlite3-doc
The following NEW packages will be installed:
  binutils binutils-common binutils-x86-64-linux-gnu cpp cpp-8 gcc gcc-8
  krb5-locales libasan5 libatomic1 libbinutils libc-dev-bin libc6-dev libcc1-0
  libgcc-8-dev libgomp1 libgssapi-krb5-2 libisl19 libitm1 libk5crypto3
  libkeyutils1 libkrb5-3 libkrb5support0 libldap-2.4-2 libldap-common liblsan0
  libmpc3 libmpfr6 libmpx2 libpq-dev libpq5 libquadmath0 libsasl2-2
  libsasl2-modules libsasl2-modules-db libtsan0 libubsan1 linux-libc-dev make
  manpages manpages-dev sqlite3
0 upgraded, 42 newly installed, 0 to remove and 0 not upgraded.
Need to get 38.7 MB of archives.
After this operation, 145 MB of additional disk space will be used.
Get:1 http://security.debian.org/debian-security buster/updates/main amd64 krb5-locales all 1.17-3+deb10u2 [95.5 kB]
Get:2 http://deb.debian.org/debian buster/main amd64 libkeyutils1 amd64 1.6-6 [15.0 kB]
Get:3 http://deb.debian.org/debian buster/main amd64 manpages all 4.16-2 [1295 kB]
Get:4 http://security.debian.org/debian-security buster/updates/main amd64 libkrb5support0 amd64 1.17-3+deb10u2 [65.7 kB]
Get:5 http://security.debian.org/debian-security buster/updates/main amd64 libk5crypto3 amd64 1.17-3+deb10u2 [122 kB]
Get:6 http://security.debian.org/debian-security buster/updates/main amd64 libkrb5-3 amd64 1.17-3+deb10u2 [369 kB]
Get:7 http://security.debian.org/debian-security buster/updates/main amd64 libgssapi-krb5-2 amd64 1.17-3+deb10u2 [158 kB]
Get:8 http://security.debian.org/debian-security buster/updates/main amd64 linux-libc-dev amd64 4.19.194-3 [1459 kB]
Get:9 http://deb.debian.org/debian buster/main amd64 binutils-common amd64 2.31.1-16 [2073 kB]
Get:10 http://deb.debian.org/debian buster/main amd64 libbinutils amd64 2.31.1-16 [478 kB]
Get:11 http://deb.debian.org/debian buster/main amd64 binutils-x86-64-linux-gnu amd64 2.31.1-16 [1823 kB]
Get:12 http://deb.debian.org/debian buster/main amd64 binutils amd64 2.31.1-16 [56.8 kB]
Get:13 http://deb.debian.org/debian buster/main amd64 libisl19 amd64 0.20-2 [587 kB]
Get:14 http://deb.debian.org/debian buster/main amd64 libmpfr6 amd64 4.0.2-1 [775 kB]
Get:15 http://deb.debian.org/debian buster/main amd64 libmpc3 amd64 1.1.0-1 [41.3 kB]
Get:16 http://deb.debian.org/debian buster/main amd64 cpp-8 amd64 8.3.0-6 [8914 kB]
Get:17 http://deb.debian.org/debian buster/main amd64 cpp amd64 4:8.3.0-1 [19.4 kB]
Get:18 http://deb.debian.org/debian buster/main amd64 libcc1-0 amd64 8.3.0-6 [46.6 kB]
Get:19 http://deb.debian.org/debian buster/main amd64 libgomp1 amd64 8.3.0-6 [75.8 kB]
Get:20 http://deb.debian.org/debian buster/main amd64 libitm1 amd64 8.3.0-6 [27.7 kB]
Get:21 http://deb.debian.org/debian buster/main amd64 libatomic1 amd64 8.3.0-6 [9032 B]
Get:22 http://deb.debian.org/debian buster/main amd64 libasan5 amd64 8.3.0-6 [362 kB]
Get:23 http://deb.debian.org/debian buster/main amd64 liblsan0 amd64 8.3.0-6 [131 kB]
Get:24 http://deb.debian.org/debian buster/main amd64 libtsan0 amd64 8.3.0-6 [283 kB]
Get:25 http://deb.debian.org/debian buster/main amd64 libubsan1 amd64 8.3.0-6 [120 kB]
Get:26 http://deb.debian.org/debian buster/main amd64 libmpx2 amd64 8.3.0-6 [11.4 kB]
Get:27 http://deb.debian.org/debian buster/main amd64 libquadmath0 amd64 8.3.0-6 [133 kB]
Get:28 http://deb.debian.org/debian buster/main amd64 libgcc-8-dev amd64 8.3.0-6 [2298 kB]
Get:29 http://deb.debian.org/debian buster/main amd64 gcc-8 amd64 8.3.0-6 [9452 kB]
Get:30 http://deb.debian.org/debian buster/main amd64 gcc amd64 4:8.3.0-1 [5196 B]
Get:31 http://deb.debian.org/debian buster/main amd64 libc-dev-bin amd64 2.28-10 [275 kB]
Get:32 http://deb.debian.org/debian buster/main amd64 libc6-dev amd64 2.28-10 [2691 kB]
Get:33 http://deb.debian.org/debian buster/main amd64 libsasl2-modules-db amd64 2.1.27+dfsg-1+deb10u1 [69.1 kB]
Get:34 http://deb.debian.org/debian buster/main amd64 libsasl2-2 amd64 2.1.27+dfsg-1+deb10u1 [106 kB]
Get:35 http://deb.debian.org/debian buster/main amd64 libldap-common all 2.4.47+dfsg-3+deb10u6 [90.0 kB]
Get:36 http://deb.debian.org/debian buster/main amd64 libldap-2.4-2 amd64 2.4.47+dfsg-3+deb10u6 [224 kB]
Get:37 http://deb.debian.org/debian buster/main amd64 libpq5 amd64 11.12-0+deb10u1 [170 kB]
Get:38 http://deb.debian.org/debian buster/main amd64 libpq-dev amd64 11.12-0+deb10u1 [166 kB]
Get:39 http://deb.debian.org/debian buster/main amd64 libsasl2-modules amd64 2.1.27+dfsg-1+deb10u1 [104 kB]
Get:40 http://deb.debian.org/debian buster/main amd64 make amd64 4.2.1-1.2 [341 kB]
Get:41 http://deb.debian.org/debian buster/main amd64 manpages-dev all 4.16-2 [2232 kB]
Get:42 http://deb.debian.org/debian buster/main amd64 sqlite3 amd64 3.27.2-3+deb10u1 [940 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 38.7 MB in 4s (10.8 MB/s)
Selecting previously unselected package krb5-locales.
(Reading database ... 6840 files and directories currently installed.)
Preparing to unpack .../00-krb5-locales_1.17-3+deb10u2_all.deb ...
Unpacking krb5-locales (1.17-3+deb10u2) ...
Selecting previously unselected package libkeyutils1:amd64.
Preparing to unpack .../01-libkeyutils1_1.6-6_amd64.deb ...
Unpacking libkeyutils1:amd64 (1.6-6) ...
Selecting previously unselected package libkrb5support0:amd64.
Preparing to unpack .../02-libkrb5support0_1.17-3+deb10u2_amd64.deb ...
Unpacking libkrb5support0:amd64 (1.17-3+deb10u2) ...
Selecting previously unselected package libk5crypto3:amd64.
Preparing to unpack .../03-libk5crypto3_1.17-3+deb10u2_amd64.deb ...
Unpacking libk5crypto3:amd64 (1.17-3+deb10u2) ...
Selecting previously unselected package libkrb5-3:amd64.
Preparing to unpack .../04-libkrb5-3_1.17-3+deb10u2_amd64.deb ...
Unpacking libkrb5-3:amd64 (1.17-3+deb10u2) ...
Selecting previously unselected package libgssapi-krb5-2:amd64.
Preparing to unpack .../05-libgssapi-krb5-2_1.17-3+deb10u2_amd64.deb ...
Unpacking libgssapi-krb5-2:amd64 (1.17-3+deb10u2) ...
Selecting previously unselected package manpages.
Preparing to unpack .../06-manpages_4.16-2_all.deb ...
Unpacking manpages (4.16-2) ...
Selecting previously unselected package binutils-common:amd64.
Preparing to unpack .../07-binutils-common_2.31.1-16_amd64.deb ...
Unpacking binutils-common:amd64 (2.31.1-16) ...
Selecting previously unselected package libbinutils:amd64.
Preparing to unpack .../08-libbinutils_2.31.1-16_amd64.deb ...
Unpacking libbinutils:amd64 (2.31.1-16) ...
Selecting previously unselected package binutils-x86-64-linux-gnu.
Preparing to unpack .../09-binutils-x86-64-linux-gnu_2.31.1-16_amd64.deb ...
Unpacking binutils-x86-64-linux-gnu (2.31.1-16) ...
Selecting previously unselected package binutils.
Preparing to unpack .../10-binutils_2.31.1-16_amd64.deb ...
Unpacking binutils (2.31.1-16) ...
Selecting previously unselected package libisl19:amd64.
Preparing to unpack .../11-libisl19_0.20-2_amd64.deb ...
Unpacking libisl19:amd64 (0.20-2) ...
Selecting previously unselected package libmpfr6:amd64.
Preparing to unpack .../12-libmpfr6_4.0.2-1_amd64.deb ...
Unpacking libmpfr6:amd64 (4.0.2-1) ...
Selecting previously unselected package libmpc3:amd64.
Preparing to unpack .../13-libmpc3_1.1.0-1_amd64.deb ...
Unpacking libmpc3:amd64 (1.1.0-1) ...
Selecting previously unselected package cpp-8.
Preparing to unpack .../14-cpp-8_8.3.0-6_amd64.deb ...
Unpacking cpp-8 (8.3.0-6) ...
Selecting previously unselected package cpp.
Preparing to unpack .../15-cpp_4%3a8.3.0-1_amd64.deb ...
Unpacking cpp (4:8.3.0-1) ...
Selecting previously unselected package libcc1-0:amd64.
Preparing to unpack .../16-libcc1-0_8.3.0-6_amd64.deb ...
Unpacking libcc1-0:amd64 (8.3.0-6) ...
Selecting previously unselected package libgomp1:amd64.
Preparing to unpack .../17-libgomp1_8.3.0-6_amd64.deb ...
Unpacking libgomp1:amd64 (8.3.0-6) ...
Selecting previously unselected package libitm1:amd64.
Preparing to unpack .../18-libitm1_8.3.0-6_amd64.deb ...
Unpacking libitm1:amd64 (8.3.0-6) ...
Selecting previously unselected package libatomic1:amd64.
Preparing to unpack .../19-libatomic1_8.3.0-6_amd64.deb ...
Unpacking libatomic1:amd64 (8.3.0-6) ...
Selecting previously unselected package libasan5:amd64.
Preparing to unpack .../20-libasan5_8.3.0-6_amd64.deb ...
Unpacking libasan5:amd64 (8.3.0-6) ...
Selecting previously unselected package liblsan0:amd64.
Preparing to unpack .../21-liblsan0_8.3.0-6_amd64.deb ...
Unpacking liblsan0:amd64 (8.3.0-6) ...
Selecting previously unselected package libtsan0:amd64.
Preparing to unpack .../22-libtsan0_8.3.0-6_amd64.deb ...
Unpacking libtsan0:amd64 (8.3.0-6) ...
Selecting previously unselected package libubsan1:amd64.
Preparing to unpack .../23-libubsan1_8.3.0-6_amd64.deb ...
Unpacking libubsan1:amd64 (8.3.0-6) ...
Selecting previously unselected package libmpx2:amd64.
Preparing to unpack .../24-libmpx2_8.3.0-6_amd64.deb ...
Unpacking libmpx2:amd64 (8.3.0-6) ...
Selecting previously unselected package libquadmath0:amd64.
Preparing to unpack .../25-libquadmath0_8.3.0-6_amd64.deb ...
Unpacking libquadmath0:amd64 (8.3.0-6) ...
Selecting previously unselected package libgcc-8-dev:amd64.
Preparing to unpack .../26-libgcc-8-dev_8.3.0-6_amd64.deb ...
Unpacking libgcc-8-dev:amd64 (8.3.0-6) ...
Selecting previously unselected package gcc-8.
Preparing to unpack .../27-gcc-8_8.3.0-6_amd64.deb ...
Unpacking gcc-8 (8.3.0-6) ...
Selecting previously unselected package gcc.
Preparing to unpack .../28-gcc_4%3a8.3.0-1_amd64.deb ...
Unpacking gcc (4:8.3.0-1) ...
Selecting previously unselected package libc-dev-bin.
Preparing to unpack .../29-libc-dev-bin_2.28-10_amd64.deb ...
Unpacking libc-dev-bin (2.28-10) ...
Selecting previously unselected package linux-libc-dev:amd64.
Preparing to unpack .../30-linux-libc-dev_4.19.194-3_amd64.deb ...
Unpacking linux-libc-dev:amd64 (4.19.194-3) ...
Selecting previously unselected package libc6-dev:amd64.
Preparing to unpack .../31-libc6-dev_2.28-10_amd64.deb ...
Unpacking libc6-dev:amd64 (2.28-10) ...
Selecting previously unselected package libsasl2-modules-db:amd64.
Preparing to unpack .../32-libsasl2-modules-db_2.1.27+dfsg-1+deb10u1_amd64.deb ...
Unpacking libsasl2-modules-db:amd64 (2.1.27+dfsg-1+deb10u1) ...
Selecting previously unselected package libsasl2-2:amd64.
Preparing to unpack .../33-libsasl2-2_2.1.27+dfsg-1+deb10u1_amd64.deb ...
Unpacking libsasl2-2:amd64 (2.1.27+dfsg-1+deb10u1) ...
Selecting previously unselected package libldap-common.
Preparing to unpack .../34-libldap-common_2.4.47+dfsg-3+deb10u6_all.deb ...
Unpacking libldap-common (2.4.47+dfsg-3+deb10u6) ...
Selecting previously unselected package libldap-2.4-2:amd64.
Preparing to unpack .../35-libldap-2.4-2_2.4.47+dfsg-3+deb10u6_amd64.deb ...
Unpacking libldap-2.4-2:amd64 (2.4.47+dfsg-3+deb10u6) ...
Selecting previously unselected package libpq5:amd64.
Preparing to unpack .../36-libpq5_11.12-0+deb10u1_amd64.deb ...
Unpacking libpq5:amd64 (11.12-0+deb10u1) ...
Selecting previously unselected package libpq-dev.
Preparing to unpack .../37-libpq-dev_11.12-0+deb10u1_amd64.deb ...
Unpacking libpq-dev (11.12-0+deb10u1) ...
Selecting previously unselected package libsasl2-modules:amd64.
Preparing to unpack .../38-libsasl2-modules_2.1.27+dfsg-1+deb10u1_amd64.deb ...
Unpacking libsasl2-modules:amd64 (2.1.27+dfsg-1+deb10u1) ...
Selecting previously unselected package make.
Preparing to unpack .../39-make_4.2.1-1.2_amd64.deb ...
Unpacking make (4.2.1-1.2) ...
Selecting previously unselected package manpages-dev.
Preparing to unpack .../40-manpages-dev_4.16-2_all.deb ...
Unpacking manpages-dev (4.16-2) ...
Selecting previously unselected package sqlite3.
Preparing to unpack .../41-sqlite3_3.27.2-3+deb10u1_amd64.deb ...
Unpacking sqlite3 (3.27.2-3+deb10u1) ...
Setting up libkeyutils1:amd64 (1.6-6) ...
Setting up manpages (4.16-2) ...
Setting up libsasl2-modules:amd64 (2.1.27+dfsg-1+deb10u1) ...
Setting up binutils-common:amd64 (2.31.1-16) ...
Setting up linux-libc-dev:amd64 (4.19.194-3) ...
Setting up krb5-locales (1.17-3+deb10u2) ...
Setting up libgomp1:amd64 (8.3.0-6) ...
Setting up libldap-common (2.4.47+dfsg-3+deb10u6) ...
Setting up libkrb5support0:amd64 (1.17-3+deb10u2) ...
Setting up libsasl2-modules-db:amd64 (2.1.27+dfsg-1+deb10u1) ...
Setting up libasan5:amd64 (8.3.0-6) ...
Setting up make (4.2.1-1.2) ...
Setting up libmpfr6:amd64 (4.0.2-1) ...
Setting up libquadmath0:amd64 (8.3.0-6) ...
Setting up libmpc3:amd64 (1.1.0-1) ...
Setting up libatomic1:amd64 (8.3.0-6) ...
Setting up libk5crypto3:amd64 (1.17-3+deb10u2) ...
Setting up libsasl2-2:amd64 (2.1.27+dfsg-1+deb10u1) ...
Setting up libmpx2:amd64 (8.3.0-6) ...
Setting up libubsan1:amd64 (8.3.0-6) ...
Setting up libisl19:amd64 (0.20-2) ...
Setting up libkrb5-3:amd64 (1.17-3+deb10u2) ...
Setting up libbinutils:amd64 (2.31.1-16) ...
Setting up cpp-8 (8.3.0-6) ...
Setting up libc-dev-bin (2.28-10) ...
Setting up libcc1-0:amd64 (8.3.0-6) ...
Setting up sqlite3 (3.27.2-3+deb10u1) ...
Setting up liblsan0:amd64 (8.3.0-6) ...
Setting up libitm1:amd64 (8.3.0-6) ...
Setting up binutils-x86-64-linux-gnu (2.31.1-16) ...
Setting up libtsan0:amd64 (8.3.0-6) ...
Setting up manpages-dev (4.16-2) ...
Setting up libldap-2.4-2:amd64 (2.4.47+dfsg-3+deb10u6) ...
Setting up binutils (2.31.1-16) ...
Setting up libgssapi-krb5-2:amd64 (1.17-3+deb10u2) ...
Setting up libgcc-8-dev:amd64 (8.3.0-6) ...
Setting up cpp (4:8.3.0-1) ...
Setting up libc6-dev:amd64 (2.28-10) ...
Setting up gcc-8 (8.3.0-6) ...
Setting up libpq5:amd64 (11.12-0+deb10u1) ...
Setting up libpq-dev (11.12-0+deb10u1) ...
Setting up gcc (4:8.3.0-1) ...
Processing triggers for libc-bin (2.28-10) ...
Removing intermediate container ceee8fbb1f90
 ---> 0f8e11cde7dd
Step 4/17 : RUN id -u firestarter || useradd -u 8081 firestarter -c "FIRESTARTER User" -m -s /bin/sh
 ---> Running in 3d8e37aa1e61
id: ‘firestarter’: no such user
Removing intermediate container 3d8e37aa1e61
 ---> 852960103007
Step 5/17 : USER firestarter
 ---> Running in e9bdb7bf8d44
Removing intermediate container e9bdb7bf8d44
 ---> 1e6b91257cfe
Step 6/17 : WORKDIR /home/firestarter
 ---> Running in fed73fda3198
Removing intermediate container fed73fda3198
 ---> b9764259ed5b
Step 7/17 : COPY --chown=firestarter Makefile.inc .
 ---> ea9ef837ca39
Step 8/17 : RUN mkdir app
 ---> Running in 0c7e7459b42a
Removing intermediate container 0c7e7459b42a
 ---> 6e5301fd29d4
Step 9/17 : WORKDIR /home/firestarter/app
 ---> Running in fe8f6703d966
Removing intermediate container fe8f6703d966
 ---> f20bf82bff8a
Step 10/17 : RUN mkdir db
 ---> Running in c535d87bba31
Removing intermediate container c535d87bba31
 ---> 7cb390e431d7
Step 11/17 : COPY --chown=firestarter db-updater/requirements ./requirements
 ---> 572feb5ede86
Step 12/17 : COPY --chown=firestarter db-updater/Makefile .
 ---> 7ebc80232da1
Step 13/17 : RUN make docker-setup
 ---> Running in aba1f9421b26
test -d venv || python3 -m venv venv
. venv/bin/activate && python3 -m pip install pip-tools
Collecting pip-tools
  Downloading pip_tools-6.2.0-py3-none-any.whl (46 kB)
Requirement already satisfied: setuptools in ./venv/lib/python3.8/site-packages (from pip-tools) (56.0.0)
Requirement already satisfied: pip>=20.3 in ./venv/lib/python3.8/site-packages (from pip-tools) (21.1.1)
Collecting pep517
  Downloading pep517-0.11.0-py2.py3-none-any.whl (19 kB)
Collecting click>=7
  Downloading click-8.0.1-py3-none-any.whl (97 kB)
Collecting wheel
  Downloading wheel-0.37.0-py2.py3-none-any.whl (35 kB)
Collecting tomli
  Downloading tomli-1.2.1-py3-none-any.whl (11 kB)
Installing collected packages: tomli, wheel, pep517, click, pip-tools
Successfully installed click-8.0.1 pep517-0.11.0 pip-tools-6.2.0 tomli-1.2.1 wheel-0.37.0
WARNING: You are using pip version 21.1.1; however, version 21.2.4 is available.
You should consider upgrading via the '/home/firestarter/app/venv/bin/python3 -m pip install --upgrade pip' command.
. venv/bin/activate && make -C requirements all
make[1]: Entering directory '/home/firestarter/app/requirements'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/home/firestarter/app/requirements'
. venv/bin/activate && venv/bin/pip-sync requirements/dev.txt requirements/base.txt
Collecting appdirs==1.4.3
  Downloading appdirs-1.4.3-py2.py3-none-any.whl (12 kB)
Collecting astroid==2.3.3
  Downloading astroid-2.3.3-py3-none-any.whl (205 kB)
Collecting attrs==19.3.0
  Downloading attrs-19.3.0-py2.py3-none-any.whl (39 kB)
Collecting black==19.10b0
  Downloading black-19.10b0-py36-none-any.whl (97 kB)
Collecting click==7.1.2
  Downloading click-7.1.2-py2.py3-none-any.whl (82 kB)
Collecting confluent-kafka==1.4.2
  Downloading confluent_kafka-1.4.2-cp38-cp38-manylinux1_x86_64.whl (8.1 MB)
Collecting isort==4.3.21
  Downloading isort-4.3.21-py2.py3-none-any.whl (42 kB)
Collecting lazy-object-proxy==1.4.3
  Downloading lazy_object_proxy-1.4.3-cp38-cp38-manylinux1_x86_64.whl (58 kB)
Collecting mccabe==0.6.1
  Downloading mccabe-0.6.1-py2.py3-none-any.whl (8.6 kB)
Collecting mypy==0.740
  Downloading mypy-0.740-cp38-cp38-manylinux1_x86_64.whl (23.9 MB)
Collecting mypy-extensions==0.4.3
  Downloading mypy_extensions-0.4.3-py2.py3-none-any.whl (4.5 kB)
Collecting pathspec==0.8.0
  Downloading pathspec-0.8.0-py2.py3-none-any.whl (28 kB)
Collecting psycopg2-binary==2.8.5
  Downloading psycopg2_binary-2.8.5-cp38-cp38-manylinux1_x86_64.whl (3.0 MB)
Collecting pylint==2.4.4
  Downloading pylint-2.4.4-py3-none-any.whl (302 kB)
Collecting regex==2020.4.4
  Downloading regex-2020.4.4-cp38-cp38-manylinux2010_x86_64.whl (691 kB)
Collecting six==1.14.0
  Downloading six-1.14.0-py2.py3-none-any.whl (10 kB)
Collecting sqlalchemy==1.3.16
  Downloading SQLAlchemy-1.3.16-cp38-cp38-manylinux2010_x86_64.whl (1.2 MB)
Collecting toml==0.10.0
  Downloading toml-0.10.0-py2.py3-none-any.whl (25 kB)
Collecting typed-ast==1.4.1
  Downloading typed_ast-1.4.1-cp38-cp38-manylinux1_x86_64.whl (768 kB)
Collecting typing-extensions==3.7.4.2
  Downloading typing_extensions-3.7.4.2-py3-none-any.whl (22 kB)
Collecting wrapt==1.11.2
  Downloading wrapt-1.11.2.tar.gz (27 kB)
Building wheels for collected packages: wrapt
  Building wheel for wrapt (setup.py): started
  Building wheel for wrapt (setup.py): finished with status 'done'
  Created wheel for wrapt: filename=wrapt-1.11.2-cp38-cp38-linux_x86_64.whl size=33430 sha256=1342278b91e71411f9e3cab60ab951d66f760c859994ccaa9a46f7185e3f98a6
  Stored in directory: /home/firestarter/.cache/pip/wheels/52/25/16/7e228f52ee876e9c9c66dfd6eaf6fb2f73f18629a74dcf7045
Successfully built wrapt
Installing collected packages: wrapt, six, lazy-object-proxy, typing-extensions, typed-ast, toml, regex, pathspec, mypy-extensions, mccabe, isort, click, attrs, astroid, appdirs, sqlalchemy, pylint, psycopg2-binary, mypy, confluent-kafka, black
  Attempting uninstall: click
    Found existing installation: click 8.0.1
    Uninstalling click-8.0.1:
      Successfully uninstalled click-8.0.1
Successfully installed appdirs-1.4.3 astroid-2.3.3 attrs-19.3.0 black-19.10b0 click-7.1.2 confluent-kafka-1.4.2 isort-4.3.21 lazy-object-proxy-1.4.3 mccabe-0.6.1 mypy-0.740 mypy-extensions-0.4.3 pathspec-0.8.0 psycopg2-binary-2.8.5 pylint-2.4.4 regex-2020.4.4 six-1.14.0 sqlalchemy-1.3.16 toml-0.10.0 typed-ast-1.4.1 typing-extensions-3.7.4.2 wrapt-1.11.2
WARNING: You are using pip version 21.1.1; however, version 21.2.4 is available.
You should consider upgrading via the '/home/firestarter/app/venv/bin/python3 -m pip install --upgrade pip' command.
Removing intermediate container aba1f9421b26
 ---> aef821166a8d
Step 14/17 : ENV VIRTUAL_ENV=./venv
 ---> Running in 24d3299a1164
Removing intermediate container 24d3299a1164
 ---> c7b43fb023b2
Step 15/17 : ENV PATH="$VIRTUAL_ENV/bin:$PATH"
 ---> Running in 03004f160ea7
Removing intermediate container 03004f160ea7
 ---> dc0d31e8318e
Step 16/17 : COPY --chown=firestarter db-updater/main.py .
 ---> 39905cf8d071
Step 17/17 : CMD ["python3", "main.py"]
 ---> Running in f291da28f903
Removing intermediate container f291da28f903
 ---> 075ea9fb5ccd

Successfully built 075ea9fb5ccd
Successfully tagged ghcr.io/flightaware/firestarter/firestarter_db-updater:latest
WARNING: Image for service db-updater was built because it did not already exist. To rebuild this image you must use `docker-compose build` or `docker-compose up --build`.
Building fids
Step 1/21 : FROM python:3.8-slim-buster
 ---> 4728acd2148c
Step 2/21 : LABEL org.opencontainers.image.source=https://github.com/flightaware/firestarter
 ---> Using cache
 ---> e6b1fbb22727
Step 3/21 : RUN apt-get update && 	apt-get install -y libpq-dev gcc npm make && 	npm install npm@latest -g
 ---> Running in 9c77eaea475a
Get:1 http://deb.debian.org/debian buster InRelease [122 kB]
Get:2 http://security.debian.org/debian-security buster/updates InRelease [65.4 kB]
Get:3 http://deb.debian.org/debian buster-updates InRelease [51.9 kB]
Get:4 http://security.debian.org/debian-security buster/updates/main amd64 Packages [302 kB]
Get:5 http://deb.debian.org/debian buster/main amd64 Packages [7907 kB]
Get:6 http://deb.debian.org/debian buster-updates/main amd64 Packages [15.2 kB]
Fetched 8464 kB in 2s (4065 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
  binutils binutils-common binutils-x86-64-linux-gnu build-essential bzip2 cpp
  cpp-8 dirmngr dpkg-dev fakeroot file g++ g++-8 gcc-8 gnupg gnupg-l10n
  gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm gyp
  javascript-common krb5-locales libalgorithm-diff-perl
  libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan5 libassuan0
  libatomic1 libbinutils libbrotli1 libc-ares2 libc-dev-bin libc6-dev libcc1-0
  libdpkg-perl libfakeroot libfile-fcntllock-perl libgcc-8-dev libgdbm-compat4
  libgomp1 libgssapi-krb5-2 libicu63 libisl19 libitm1 libjs-inherits
  libjs-is-typedarray libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0
  libksba8 libldap-2.4-2 libldap-common liblocale-gettext-perl liblsan0
  libmagic-mgc libmagic1 libmpc3 libmpfr6 libmpx2 libnode-dev libnode64
  libnpth0 libperl5.28 libpq5 libpython-stdlib libpython2-stdlib
  libpython2.7-minimal libpython2.7-stdlib libquadmath0 libsasl2-2
  libsasl2-modules libsasl2-modules-db libssl-dev libstdc++-8-dev libtsan0
  libubsan1 libuv1 libuv1-dev linux-libc-dev lsb-base manpages manpages-dev
  mime-support node-abbrev node-ajv node-ansi node-ansi-align node-ansi-regex
  node-ansi-styles node-ansistyles node-aproba node-archy
  node-are-we-there-yet node-asn1 node-assert-plus node-asynckit
  node-aws-sign2 node-aws4 node-balanced-match node-bcrypt-pbkdf node-bluebird
  node-boxen node-brace-expansion node-builtin-modules node-builtins
  node-cacache node-call-limit node-camelcase node-caseless node-chalk
  node-chownr node-cli-boxes node-cliui node-clone node-co node-color-convert
  node-color-name node-combined-stream node-concat-map node-concat-stream
  node-config-chain node-console-control-strings node-copy-concurrently
  node-core-util-is node-cross-spawn node-cyclist node-dashdash
  node-decamelize node-decompress-response node-deep-extend node-defaults
  node-delayed-stream node-delegates node-detect-indent node-detect-newline
  node-duplexer3 node-duplexify node-ecc-jsbn node-editor node-encoding
  node-end-of-stream node-errno node-escape-string-regexp node-execa
  node-extend node-extsprintf node-find-up node-flush-write-stream
  node-forever-agent node-form-data node-from2 node-fs-vacuum
  node-fs-write-stream-atomic node-fs.realpath node-gauge node-get-caller-file
  node-get-stream node-getpass node-glob node-got node-graceful-fs node-gyp
  node-har-schema node-har-validator node-has-flag node-has-symbol-support-x
  node-has-to-string-tag-x node-has-unicode node-hosted-git-info
  node-http-signature node-iconv-lite node-iferr node-import-lazy
  node-imurmurhash node-inflight node-inherits node-ini node-invert-kv
  node-is-builtin-module node-is-npm node-is-object node-is-plain-obj
  node-is-retry-allowed node-is-stream node-is-typedarray node-isarray
  node-isexe node-isstream node-isurl node-jsbn node-json-parse-better-errors
  node-json-schema node-json-stable-stringify node-json-stringify-safe
  node-jsonify node-jsonparse node-jsonstream node-jsprim node-latest-version
  node-lazy-property node-lcid node-libnpx node-locate-path node-lockfile
  node-lowercase-keys node-lru-cache node-mem node-mime-types node-mimic-fn
  node-mimic-response node-minimatch node-minimist node-mississippi
  node-mkdirp node-move-concurrently node-mute-stream node-node-uuid node-nopt
  node-normalize-package-data node-npm-package-arg node-npm-run-path
  node-npmlog node-oauth-sign node-object-assign node-once node-opener
  node-os-locale node-osenv node-p-cancelable node-p-finally node-p-limit
  node-p-locate node-p-timeout node-package-json node-parallel-transform
  node-path-exists node-path-is-absolute node-path-is-inside
  node-performance-now node-prepend-http node-process-nextick-args
  node-promise-inflight node-promzard node-proto-list node-prr node-pump
  node-pumpify node-punycode node-qs node-qw node-rc node-read
  node-read-package-json node-readable-stream node-registry-auth-token
  node-registry-url node-request node-require-directory
  node-require-main-filename node-resolve-from node-retry node-rimraf
  node-run-queue node-safe-buffer node-semver node-semver-diff
  node-set-blocking node-sha node-shebang-command node-shebang-regex
  node-signal-exit node-slash node-slide node-sorted-object node-spdx-correct
  node-spdx-expression-parse node-spdx-license-ids node-sshpk node-ssri
  node-stream-each node-stream-iterate node-stream-shift node-string-decoder
  node-string-width node-strip-ansi node-strip-eof node-strip-json-comments
  node-supports-color node-tar node-term-size node-text-table node-through
  node-through2 node-timed-out node-tough-cookie node-tunnel-agent
  node-tweetnacl node-typedarray node-uid-number node-unique-filename
  node-unpipe node-url-parse-lax node-url-to-options node-util-deprecate
  node-uuid node-validate-npm-package-license node-validate-npm-package-name
  node-verror node-wcwidth.js node-which node-which-module node-wide-align
  node-widest-line node-wrap-ansi node-wrappy node-write-file-atomic
  node-xdg-basedir node-xtend node-y18n node-yallist node-yargs
  node-yargs-parser nodejs nodejs-doc patch perl perl-modules-5.28
  pinentry-curses python python-minimal python-pkg-resources python2
  python2-minimal python2.7 python2.7-minimal xz-utils
Suggested packages:
  binutils-doc bzip2-doc cpp-doc gcc-8-locales dbus-user-session
  libpam-systemd pinentry-gnome3 tor debian-keyring g++-multilib
  g++-8-multilib gcc-8-doc libstdc++6-8-dbg gcc-multilib autoconf automake
  libtool flex bison gdb gcc-doc gcc-8-multilib libgcc1-dbg libgomp1-dbg
  libitm1-dbg libatomic1-dbg libasan5-dbg liblsan0-dbg libtsan0-dbg
  libubsan1-dbg libmpx2-dbg libquadmath0-dbg parcimonie xloadimage scdaemon
  apache2 | lighttpd | httpd glibc-doc sensible-utils git bzr krb5-doc
  krb5-user postgresql-doc-11 libsasl2-modules-gssapi-mit
  | libsasl2-modules-gssapi-heimdal libsasl2-modules-ldap libsasl2-modules-otp
  libsasl2-modules-sql libssl-doc libstdc++-8-doc make-doc man-browser ed
  diffutils-doc perl-doc libterm-readline-gnu-perl
  | libterm-readline-perl-perl libb-debug-perl liblocale-codes-perl
  pinentry-doc python-doc python-tk python-setuptools python2-doc
  python2.7-doc binfmt-support
The following NEW packages will be installed:
  binutils binutils-common binutils-x86-64-linux-gnu build-essential bzip2 cpp
  cpp-8 dirmngr dpkg-dev fakeroot file g++ g++-8 gcc gcc-8 gnupg gnupg-l10n
  gnupg-utils gpg gpg-agent gpg-wks-client gpg-wks-server gpgconf gpgsm gyp
  javascript-common krb5-locales libalgorithm-diff-perl
  libalgorithm-diff-xs-perl libalgorithm-merge-perl libasan5 libassuan0
  libatomic1 libbinutils libbrotli1 libc-ares2 libc-dev-bin libc6-dev libcc1-0
  libdpkg-perl libfakeroot libfile-fcntllock-perl libgcc-8-dev libgdbm-compat4
  libgomp1 libgssapi-krb5-2 libicu63 libisl19 libitm1 libjs-inherits
  libjs-is-typedarray libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0
  libksba8 libldap-2.4-2 libldap-common liblocale-gettext-perl liblsan0
  libmagic-mgc libmagic1 libmpc3 libmpfr6 libmpx2 libnode-dev libnode64
  libnpth0 libperl5.28 libpq-dev libpq5 libpython-stdlib libpython2-stdlib
  libpython2.7-minimal libpython2.7-stdlib libquadmath0 libsasl2-2
  libsasl2-modules libsasl2-modules-db libssl-dev libstdc++-8-dev libtsan0
  libubsan1 libuv1 libuv1-dev linux-libc-dev lsb-base make manpages
  manpages-dev mime-support node-abbrev node-ajv node-ansi node-ansi-align
  node-ansi-regex node-ansi-styles node-ansistyles node-aproba node-archy
  node-are-we-there-yet node-asn1 node-assert-plus node-asynckit
  node-aws-sign2 node-aws4 node-balanced-match node-bcrypt-pbkdf node-bluebird
  node-boxen node-brace-expansion node-builtin-modules node-builtins
  node-cacache node-call-limit node-camelcase node-caseless node-chalk
  node-chownr node-cli-boxes node-cliui node-clone node-co node-color-convert
  node-color-name node-combined-stream node-concat-map node-concat-stream
  node-config-chain node-console-control-strings node-copy-concurrently
  node-core-util-is node-cross-spawn node-cyclist node-dashdash
  node-decamelize node-decompress-response node-deep-extend node-defaults
  node-delayed-stream node-delegates node-detect-indent node-detect-newline
  node-duplexer3 node-duplexify node-ecc-jsbn node-editor node-encoding
  node-end-of-stream node-errno node-escape-string-regexp node-execa
  node-extend node-extsprintf node-find-up node-flush-write-stream
  node-forever-agent node-form-data node-from2 node-fs-vacuum
  node-fs-write-stream-atomic node-fs.realpath node-gauge node-get-caller-file
  node-get-stream node-getpass node-glob node-got node-graceful-fs node-gyp
  node-har-schema node-har-validator node-has-flag node-has-symbol-support-x
  node-has-to-string-tag-x node-has-unicode node-hosted-git-info
  node-http-signature node-iconv-lite node-iferr node-import-lazy
  node-imurmurhash node-inflight node-inherits node-ini node-invert-kv
  node-is-builtin-module node-is-npm node-is-object node-is-plain-obj
  node-is-retry-allowed node-is-stream node-is-typedarray node-isarray
  node-isexe node-isstream node-isurl node-jsbn node-json-parse-better-errors
  node-json-schema node-json-stable-stringify node-json-stringify-safe
  node-jsonify node-jsonparse node-jsonstream node-jsprim node-latest-version
  node-lazy-property node-lcid node-libnpx node-locate-path node-lockfile
  node-lowercase-keys node-lru-cache node-mem node-mime-types node-mimic-fn
  node-mimic-response node-minimatch node-minimist node-mississippi
  node-mkdirp node-move-concurrently node-mute-stream node-node-uuid node-nopt
  node-normalize-package-data node-npm-package-arg node-npm-run-path
  node-npmlog node-oauth-sign node-object-assign node-once node-opener
  node-os-locale node-osenv node-p-cancelable node-p-finally node-p-limit
  node-p-locate node-p-timeout node-package-json node-parallel-transform
  node-path-exists node-path-is-absolute node-path-is-inside
  node-performance-now node-prepend-http node-process-nextick-args
  node-promise-inflight node-promzard node-proto-list node-prr node-pump
  node-pumpify node-punycode node-qs node-qw node-rc node-read
  node-read-package-json node-readable-stream node-registry-auth-token
  node-registry-url node-request node-require-directory
  node-require-main-filename node-resolve-from node-retry node-rimraf
  node-run-queue node-safe-buffer node-semver node-semver-diff
  node-set-blocking node-sha node-shebang-command node-shebang-regex
  node-signal-exit node-slash node-slide node-sorted-object node-spdx-correct
  node-spdx-expression-parse node-spdx-license-ids node-sshpk node-ssri
  node-stream-each node-stream-iterate node-stream-shift node-string-decoder
  node-string-width node-strip-ansi node-strip-eof node-strip-json-comments
  node-supports-color node-tar node-term-size node-text-table node-through
  node-through2 node-timed-out node-tough-cookie node-tunnel-agent
  node-tweetnacl node-typedarray node-uid-number node-unique-filename
  node-unpipe node-url-parse-lax node-url-to-options node-util-deprecate
  node-uuid node-validate-npm-package-license node-validate-npm-package-name
  node-verror node-wcwidth.js node-which node-which-module node-wide-align
  node-widest-line node-wrap-ansi node-wrappy node-write-file-atomic
  node-xdg-basedir node-xtend node-y18n node-yallist node-yargs
  node-yargs-parser nodejs nodejs-doc npm patch perl perl-modules-5.28
  pinentry-curses python python-minimal python-pkg-resources python2
  python2-minimal python2.7 python2.7-minimal xz-utils
0 upgraded, 345 newly installed, 0 to remove and 0 not upgraded.
Need to get 92.8 MB of archives.
After this operation, 370 MB of additional disk space will be used.
Get:1 http://security.debian.org/debian-security buster/updates/main amd64 krb5-locales all 1.17-3+deb10u2 [95.5 kB]
Get:2 http://deb.debian.org/debian buster/main amd64 perl-modules-5.28 all 5.28.1-6+deb10u1 [2873 kB]
Get:3 http://security.debian.org/debian-security buster/updates/main amd64 libkrb5support0 amd64 1.17-3+deb10u2 [65.7 kB]
Get:4 http://security.debian.org/debian-security buster/updates/main amd64 libk5crypto3 amd64 1.17-3+deb10u2 [122 kB]
Get:5 http://security.debian.org/debian-security buster/updates/main amd64 libkrb5-3 amd64 1.17-3+deb10u2 [369 kB]
Get:6 http://security.debian.org/debian-security buster/updates/main amd64 libgssapi-krb5-2 amd64 1.17-3+deb10u2 [158 kB]
Get:7 http://security.debian.org/debian-security buster/updates/main amd64 linux-libc-dev amd64 4.19.194-3 [1459 kB]
Get:8 http://deb.debian.org/debian buster/main amd64 libgdbm-compat4 amd64 1.18.1-4 [44.1 kB]
Get:9 http://deb.debian.org/debian buster/main amd64 libperl5.28 amd64 5.28.1-6+deb10u1 [3894 kB]
Get:10 http://deb.debian.org/debian buster/main amd64 perl amd64 5.28.1-6+deb10u1 [204 kB]
Get:11 http://deb.debian.org/debian buster/main amd64 libpython2.7-minimal amd64 2.7.16-2+deb10u1 [395 kB]
Get:12 http://deb.debian.org/debian buster/main amd64 python2.7-minimal amd64 2.7.16-2+deb10u1 [1369 kB]
Get:13 http://security.debian.org/debian-security buster/updates/main amd64 libssl-dev amd64 1.1.1d-0+deb10u7 [1795 kB]
Get:14 http://deb.debian.org/debian buster/main amd64 python2-minimal amd64 2.7.16-1 [41.4 kB]
Get:15 http://deb.debian.org/debian buster/main amd64 python-minimal amd64 2.7.16-1 [21.0 kB]
Get:16 http://deb.debian.org/debian buster/main amd64 mime-support all 3.62 [37.2 kB]
Get:17 http://deb.debian.org/debian buster/main amd64 libpython2.7-stdlib amd64 2.7.16-2+deb10u1 [1912 kB]
Get:18 http://deb.debian.org/debian buster/main amd64 python2.7 amd64 2.7.16-2+deb10u1 [305 kB]
Get:19 http://deb.debian.org/debian buster/main amd64 libpython2-stdlib amd64 2.7.16-1 [20.8 kB]
Get:20 http://deb.debian.org/debian buster/main amd64 libpython-stdlib amd64 2.7.16-1 [20.8 kB]
Get:21 http://deb.debian.org/debian buster/main amd64 python2 amd64 2.7.16-1 [41.6 kB]
Get:22 http://deb.debian.org/debian buster/main amd64 python amd64 2.7.16-1 [22.8 kB]
Get:23 http://deb.debian.org/debian buster/main amd64 liblocale-gettext-perl amd64 1.07-3+b4 [18.9 kB]
Get:24 http://deb.debian.org/debian buster/main amd64 bzip2 amd64 1.0.6-9.2~deb10u1 [48.4 kB]
Get:25 http://deb.debian.org/debian buster/main amd64 libmagic-mgc amd64 1:5.35-4+deb10u2 [242 kB]
Get:26 http://deb.debian.org/debian buster/main amd64 libmagic1 amd64 1:5.35-4+deb10u2 [118 kB]
Get:27 http://deb.debian.org/debian buster/main amd64 file amd64 1:5.35-4+deb10u2 [66.4 kB]
Get:28 http://deb.debian.org/debian buster/main amd64 libkeyutils1 amd64 1.6-6 [15.0 kB]
Get:29 http://deb.debian.org/debian buster/main amd64 manpages all 4.16-2 [1295 kB]
Get:30 http://deb.debian.org/debian buster/main amd64 xz-utils amd64 5.2.4-1 [183 kB]
Get:31 http://deb.debian.org/debian buster/main amd64 binutils-common amd64 2.31.1-16 [2073 kB]
Get:32 http://security.debian.org/debian-security buster/updates/main amd64 libuv1 amd64 1.24.1-1+deb10u1 [110 kB]
Get:33 http://deb.debian.org/debian buster/main amd64 libbinutils amd64 2.31.1-16 [478 kB]
Get:34 http://security.debian.org/debian-security buster/updates/main amd64 libuv1-dev amd64 1.24.1-1+deb10u1 [130 kB]
Get:35 http://deb.debian.org/debian buster/main amd64 binutils-x86-64-linux-gnu amd64 2.31.1-16 [1823 kB]
Get:36 http://security.debian.org/debian-security buster/updates/main amd64 libc-ares2 amd64 1.14.0-1+deb10u1 [86.1 kB]
Get:37 http://deb.debian.org/debian buster/main amd64 binutils amd64 2.31.1-16 [56.8 kB]
Get:38 http://deb.debian.org/debian buster/main amd64 libc-dev-bin amd64 2.28-10 [275 kB]
Get:39 http://deb.debian.org/debian buster/main amd64 libc6-dev amd64 2.28-10 [2691 kB]
Get:40 http://deb.debian.org/debian buster/main amd64 libisl19 amd64 0.20-2 [587 kB]
Get:41 http://deb.debian.org/debian buster/main amd64 libmpfr6 amd64 4.0.2-1 [775 kB]
Get:42 http://deb.debian.org/debian buster/main amd64 libmpc3 amd64 1.1.0-1 [41.3 kB]
Get:43 http://deb.debian.org/debian buster/main amd64 cpp-8 amd64 8.3.0-6 [8914 kB]
Get:44 http://deb.debian.org/debian buster/main amd64 cpp amd64 4:8.3.0-1 [19.4 kB]
Get:45 http://deb.debian.org/debian buster/main amd64 libcc1-0 amd64 8.3.0-6 [46.6 kB]
Get:46 http://deb.debian.org/debian buster/main amd64 libgomp1 amd64 8.3.0-6 [75.8 kB]
Get:47 http://deb.debian.org/debian buster/main amd64 libitm1 amd64 8.3.0-6 [27.7 kB]
Get:48 http://deb.debian.org/debian buster/main amd64 libatomic1 amd64 8.3.0-6 [9032 B]
Get:49 http://deb.debian.org/debian buster/main amd64 libasan5 amd64 8.3.0-6 [362 kB]
Get:50 http://deb.debian.org/debian buster/main amd64 liblsan0 amd64 8.3.0-6 [131 kB]
Get:51 http://deb.debian.org/debian buster/main amd64 libtsan0 amd64 8.3.0-6 [283 kB]
Get:52 http://deb.debian.org/debian buster/main amd64 libubsan1 amd64 8.3.0-6 [120 kB]
Get:53 http://deb.debian.org/debian buster/main amd64 libmpx2 amd64 8.3.0-6 [11.4 kB]
Get:54 http://deb.debian.org/debian buster/main amd64 libquadmath0 amd64 8.3.0-6 [133 kB]
Get:55 http://deb.debian.org/debian buster/main amd64 libgcc-8-dev amd64 8.3.0-6 [2298 kB]
Get:56 http://deb.debian.org/debian buster/main amd64 gcc-8 amd64 8.3.0-6 [9452 kB]
Get:57 http://deb.debian.org/debian buster/main amd64 gcc amd64 4:8.3.0-1 [5196 B]
Get:58 http://deb.debian.org/debian buster/main amd64 libstdc++-8-dev amd64 8.3.0-6 [1532 kB]
Get:59 http://deb.debian.org/debian buster/main amd64 g++-8 amd64 8.3.0-6 [9752 kB]
Get:60 http://deb.debian.org/debian buster/main amd64 g++ amd64 4:8.3.0-1 [1644 B]
Get:61 http://deb.debian.org/debian buster/main amd64 make amd64 4.2.1-1.2 [341 kB]
Get:62 http://deb.debian.org/debian buster/main amd64 libdpkg-perl all 1.19.7 [1414 kB]
Get:63 http://deb.debian.org/debian buster/main amd64 patch amd64 2.7.6-3+deb10u1 [126 kB]
Get:64 http://deb.debian.org/debian buster/main amd64 dpkg-dev all 1.19.7 [1773 kB]
Get:65 http://deb.debian.org/debian buster/main amd64 build-essential amd64 12.6 [7576 B]
Get:66 http://deb.debian.org/debian buster/main amd64 libassuan0 amd64 2.5.2-1 [49.4 kB]
Get:67 http://deb.debian.org/debian buster/main amd64 gpgconf amd64 2.2.12-1+deb10u1 [510 kB]
Get:68 http://deb.debian.org/debian buster/main amd64 lsb-base all 10.2019051400 [28.4 kB]
Get:69 http://deb.debian.org/debian buster/main amd64 libksba8 amd64 1.3.5-2 [99.7 kB]
Get:70 http://deb.debian.org/debian buster/main amd64 libsasl2-modules-db amd64 2.1.27+dfsg-1+deb10u1 [69.1 kB]
Get:71 http://deb.debian.org/debian buster/main amd64 libsasl2-2 amd64 2.1.27+dfsg-1+deb10u1 [106 kB]
Get:72 http://deb.debian.org/debian buster/main amd64 libldap-common all 2.4.47+dfsg-3+deb10u6 [90.0 kB]
Get:73 http://deb.debian.org/debian buster/main amd64 libldap-2.4-2 amd64 2.4.47+dfsg-3+deb10u6 [224 kB]
Get:74 http://deb.debian.org/debian buster/main amd64 libnpth0 amd64 1.6-1 [18.4 kB]
Get:75 http://deb.debian.org/debian buster/main amd64 dirmngr amd64 2.2.12-1+deb10u1 [712 kB]
Get:76 http://deb.debian.org/debian buster/main amd64 libfakeroot amd64 1.23-1 [45.9 kB]
Get:77 http://deb.debian.org/debian buster/main amd64 fakeroot amd64 1.23-1 [85.8 kB]
Get:78 http://deb.debian.org/debian buster/main amd64 gnupg-l10n all 2.2.12-1+deb10u1 [1010 kB]
Get:79 http://deb.debian.org/debian buster/main amd64 gnupg-utils amd64 2.2.12-1+deb10u1 [861 kB]
Get:80 http://deb.debian.org/debian buster/main amd64 gpg amd64 2.2.12-1+deb10u1 [865 kB]
Get:81 http://deb.debian.org/debian buster/main amd64 pinentry-curses amd64 1.1.0-2 [64.5 kB]
Get:82 http://deb.debian.org/debian buster/main amd64 gpg-agent amd64 2.2.12-1+deb10u1 [617 kB]
Get:83 http://deb.debian.org/debian buster/main amd64 gpg-wks-client amd64 2.2.12-1+deb10u1 [485 kB]
Get:84 http://deb.debian.org/debian buster/main amd64 gpg-wks-server amd64 2.2.12-1+deb10u1 [478 kB]
Get:85 http://deb.debian.org/debian buster/main amd64 gpgsm amd64 2.2.12-1+deb10u1 [604 kB]
Get:86 http://deb.debian.org/debian buster/main amd64 gnupg all 2.2.12-1+deb10u1 [715 kB]
Get:87 http://deb.debian.org/debian buster/main amd64 python-pkg-resources all 40.8.0-1 [182 kB]
Get:88 http://deb.debian.org/debian buster/main amd64 gyp all 0.1+20180428git4d467626-3 [238 kB]
Get:89 http://deb.debian.org/debian buster/main amd64 javascript-common all 11 [6120 B]
Get:90 http://deb.debian.org/debian buster/main amd64 libalgorithm-diff-perl all 1.19.03-2 [47.9 kB]
Get:91 http://deb.debian.org/debian buster/main amd64 libalgorithm-diff-xs-perl amd64 0.04-5+b1 [11.8 kB]
Get:92 http://deb.debian.org/debian buster/main amd64 libalgorithm-merge-perl all 0.08-3 [12.7 kB]
Get:93 http://deb.debian.org/debian buster/main amd64 libbrotli1 amd64 1.0.7-2+deb10u1 [269 kB]
Get:94 http://deb.debian.org/debian buster/main amd64 libfile-fcntllock-perl amd64 0.22-3+b5 [35.4 kB]
Get:95 http://deb.debian.org/debian buster/main amd64 libicu63 amd64 63.1-6+deb10u1 [8300 kB]
Get:96 http://deb.debian.org/debian buster/main amd64 libjs-inherits all 2.0.3-1 [2762 B]
Get:97 http://deb.debian.org/debian buster/main amd64 libjs-is-typedarray all 1.0.0-2 [2876 B]
Get:98 http://deb.debian.org/debian buster/main amd64 libnode64 amd64 10.24.0~dfsg-1~deb10u1 [5631 kB]
Get:99 http://deb.debian.org/debian buster/main amd64 libnode-dev amd64 10.24.0~dfsg-1~deb10u1 [397 kB]
Get:100 http://deb.debian.org/debian buster/main amd64 libpq5 amd64 11.12-0+deb10u1 [170 kB]
Get:101 http://deb.debian.org/debian buster/main amd64 libpq-dev amd64 11.12-0+deb10u1 [166 kB]
Get:102 http://deb.debian.org/debian buster/main amd64 libsasl2-modules amd64 2.1.27+dfsg-1+deb10u1 [104 kB]
Get:103 http://deb.debian.org/debian buster/main amd64 manpages-dev all 4.16-2 [2232 kB]
Get:104 http://deb.debian.org/debian buster/main amd64 nodejs amd64 10.24.0~dfsg-1~deb10u1 [87.3 kB]
Get:105 http://deb.debian.org/debian buster/main amd64 node-abbrev all 1.1.1-1 [4352 B]
Get:106 http://deb.debian.org/debian buster/main amd64 node-jsonify all 0.0.0-1 [5408 B]
Get:107 http://deb.debian.org/debian buster/main amd64 node-json-stable-stringify all 1.0.1-1 [4450 B]
Get:108 http://deb.debian.org/debian buster/main amd64 node-co all 4.6.0-1 [7550 B]
Get:109 http://deb.debian.org/debian buster/main amd64 node-ajv all 5.0.0-1 [64.9 kB]
Get:110 http://deb.debian.org/debian buster/main amd64 node-ansi all 0.3.0-3 [9068 B]
Get:111 http://deb.debian.org/debian buster/main amd64 node-clone all 2.1.2-1 [7880 B]
Get:112 http://deb.debian.org/debian buster/main amd64 node-defaults all 1.0.3-1 [3108 B]
Get:113 http://deb.debian.org/debian buster/main amd64 node-wcwidth.js all 1.0.0-1 [6408 B]
Get:114 http://deb.debian.org/debian buster/main amd64 node-ansi-regex all 3.0.0-1 [3658 B]
Get:115 http://deb.debian.org/debian buster/main amd64 node-strip-ansi all 4.0.0-1 [3078 B]
Get:116 http://deb.debian.org/debian buster/main amd64 node-string-width all 2.1.1-1 [3992 B]
Get:117 http://deb.debian.org/debian buster/main amd64 node-ansi-align all 2.0.0-1 [4704 B]
Get:118 http://deb.debian.org/debian buster/main amd64 node-color-name all 1.1.3-1 [4090 B]
Get:119 http://deb.debian.org/debian buster/main amd64 node-color-convert all 1.9.0-3 [10.1 kB]
Get:120 http://deb.debian.org/debian buster/main amd64 node-ansi-styles all 3.2.1-1 [5684 B]
Get:121 http://deb.debian.org/debian buster/main amd64 node-ansistyles all 0.1.3-1 [4026 B]
Get:122 http://deb.debian.org/debian buster/main amd64 node-aproba all 1.2.0-1 [5008 B]
Get:123 http://deb.debian.org/debian buster/main amd64 node-archy all 1.0.0-2 [4340 B]
Get:124 http://deb.debian.org/debian buster/main amd64 node-delegates all 1.0.0-1 [3864 B]
Get:125 http://deb.debian.org/debian buster/main amd64 node-are-we-there-yet all 1.1.4-1 [7662 B]
Get:126 http://deb.debian.org/debian buster/main amd64 node-asn1 all 0.2.3-1 [6880 B]
Get:127 http://deb.debian.org/debian buster/main amd64 node-assert-plus all 1.0.0-1 [6162 B]
Get:128 http://deb.debian.org/debian buster/main amd64 node-asynckit all 0.4.0-2 [10.4 kB]
Get:129 http://deb.debian.org/debian buster/main amd64 node-aws-sign2 all 0.7.1-1 [3716 B]
Get:130 http://deb.debian.org/debian buster/main amd64 node-aws4 all 1.8.0-1 [11.7 kB]
Get:131 http://deb.debian.org/debian buster/main amd64 node-balanced-match all 0.4.2-1 [3982 B]
Get:132 http://deb.debian.org/debian buster/main amd64 node-tweetnacl all 0.14.5+dfsg-3 [21.1 kB]
Get:133 http://deb.debian.org/debian buster/main amd64 node-bcrypt-pbkdf all 1.0.1-1 [10.4 kB]
Get:134 http://deb.debian.org/debian buster/main amd64 node-bluebird all 3.5.1+dfsg2-2 [36.4 kB]
Get:135 http://deb.debian.org/debian buster/main amd64 node-camelcase all 5.0.0-1 [3964 B]
Get:136 http://deb.debian.org/debian buster/main amd64 node-escape-string-regexp all 1.0.5-1 [3218 B]
Get:137 http://deb.debian.org/debian buster/main amd64 node-has-flag all 2.0.0-1 [3172 B]
Get:138 http://deb.debian.org/debian buster/main amd64 node-supports-color all 4.4.0-2 [4742 B]
Get:139 http://deb.debian.org/debian buster/main amd64 node-chalk all 2.3.0-2 [11.2 kB]
Get:140 http://deb.debian.org/debian buster/main amd64 node-cli-boxes all 1.0.0-1 [3252 B]
Get:141 http://deb.debian.org/debian buster/main amd64 node-yallist all 3.0.3-1 [6052 B]
Get:142 http://deb.debian.org/debian buster/main amd64 node-lru-cache all 5.1.1-4 [8320 B]
Get:143 http://deb.debian.org/debian buster/main amd64 node-isexe all 2.0.0-4 [4404 B]
Get:144 http://deb.debian.org/debian buster/main amd64 node-which all 1.3.0-2 [5804 B]
Get:145 http://deb.debian.org/debian buster/main amd64 node-shebang-regex all 2.0.0-1 [2742 B]
Get:146 http://deb.debian.org/debian buster/main amd64 node-shebang-command all 1.2.0-1 [2900 B]
Get:147 http://deb.debian.org/debian buster/main amd64 node-cross-spawn all 5.1.0-2 [8732 B]
Get:148 http://deb.debian.org/debian buster/main amd64 node-get-stream all 3.0.0-1 [4724 B]
Get:149 http://deb.debian.org/debian buster/main amd64 node-is-stream all 1.1.0-1 [2998 B]
Get:150 http://deb.debian.org/debian buster/main amd64 node-npm-run-path all 2.0.2-2 [4412 B]
Get:151 http://deb.debian.org/debian buster/main amd64 node-p-finally all 1.0.0-2 [3230 B]
Get:152 http://deb.debian.org/debian buster/main amd64 node-signal-exit all 3.0.2-1 [5648 B]
Get:153 http://deb.debian.org/debian buster/main amd64 node-strip-eof all 1.0.0-2 [3010 B]
Get:154 http://deb.debian.org/debian buster/main amd64 node-execa all 0.10.0+dfsg-1 [8936 B]
Get:155 http://deb.debian.org/debian buster/main amd64 node-term-size all 1.2.0+dfsg-2 [3944 B]
Get:156 http://deb.debian.org/debian buster/main amd64 node-widest-line all 1.2.2-1 [3360 B]
Get:157 http://deb.debian.org/debian buster/main amd64 node-boxen all 1.2.2-1 [4764 B]
Get:158 http://deb.debian.org/debian buster/main amd64 node-concat-map all 0.0.1-1 [3462 B]
Get:159 http://deb.debian.org/debian buster/main amd64 node-brace-expansion all 1.1.8-1 [5798 B]
Get:160 http://deb.debian.org/debian buster/main amd64 node-builtin-modules all 3.0.0-1 [3780 B]
Get:161 http://deb.debian.org/debian buster/main amd64 node-builtins all 1.0.3-1 [2970 B]
Get:162 http://deb.debian.org/debian buster/main amd64 node-chownr all 1.1.1-1 [3432 B]
Get:163 http://deb.debian.org/debian buster/main amd64 node-minimatch all 3.0.4-3 [13.4 kB]
Get:164 http://deb.debian.org/debian buster/main amd64 node-inherits all 2.0.3-1 [3744 B]
Get:165 http://deb.debian.org/debian buster/main amd64 node-wrappy all 1.0.2-1 [3114 B]
Get:166 http://deb.debian.org/debian buster/main amd64 node-once all 1.4.0-3 [4344 B]
Get:167 http://deb.debian.org/debian buster/main amd64 node-fs.realpath all 1.0.0-1 [5522 B]
Get:168 http://deb.debian.org/debian buster/main amd64 node-inflight all 1.0.6-1 [3334 B]
Get:169 http://deb.debian.org/debian buster/main amd64 node-path-is-absolute all 1.0.0-1 [3266 B]
Get:170 http://deb.debian.org/debian buster/main amd64 node-glob all 7.1.3-2 [19.1 kB]
Get:171 http://deb.debian.org/debian buster/main amd64 node-graceful-fs all 4.1.11-1 [10.8 kB]
Get:172 http://deb.debian.org/debian buster/main amd64 node-typedarray all 0.0.6-1 [8202 B]
Get:173 http://deb.debian.org/debian buster/main amd64 node-concat-stream all 1.6.2-1 [5644 B]
Get:174 http://deb.debian.org/debian buster/main amd64 node-end-of-stream all 1.4.1-1 [3980 B]
Get:175 http://deb.debian.org/debian buster/main amd64 node-core-util-is all 1.0.2-1 [3410 B]
Get:176 http://deb.debian.org/debian buster/main amd64 node-safe-buffer all 5.1.2-1 [12.2 kB]
Get:177 http://deb.debian.org/debian buster/main amd64 node-string-decoder all 1.2.0-1 [6432 B]
Get:178 http://deb.debian.org/debian buster/main amd64 node-process-nextick-args all 2.0.0-1 [3388 B]
Get:179 http://deb.debian.org/debian buster/main amd64 node-util-deprecate all 1.0.2-1 [3866 B]
Get:180 http://deb.debian.org/debian buster/main amd64 node-isarray all 2.0.4-1 [3768 B]
Get:181 http://deb.debian.org/debian buster/main amd64 node-readable-stream all 2.3.6-1 [21.6 kB]
Get:182 http://deb.debian.org/debian buster/main amd64 node-stream-shift all 1.0.0-1 [2850 B]
Get:183 http://deb.debian.org/debian buster/main amd64 node-duplexify all 3.6.1-1 [5492 B]
Get:184 http://deb.debian.org/debian buster/main amd64 node-flush-write-stream all 1.0.3-1 [3984 B]
Get:185 http://deb.debian.org/debian buster/main amd64 node-from2 all 2.3.0-1 [4338 B]
Get:186 http://deb.debian.org/debian buster/main amd64 node-cyclist all 1.0.1-2 [3612 B]
Get:187 http://deb.debian.org/debian buster/main amd64 node-parallel-transform all 1.1.0-2 [4136 B]
Get:188 http://deb.debian.org/debian buster/main amd64 node-pump all 3.0.0-1 [4936 B]
Get:189 http://deb.debian.org/debian buster/main amd64 node-pumpify all 1.5.1-1 [4316 B]
Get:190 http://deb.debian.org/debian buster/main amd64 node-stream-each all 1.2.2-2 [3808 B]
Get:191 http://deb.debian.org/debian buster/main amd64 node-xtend all 4.0.1-2 [3560 B]
Get:192 http://deb.debian.org/debian buster/main amd64 node-through2 all 2.0.5-2 [6524 B]
Get:193 http://deb.debian.org/debian buster/main amd64 node-mississippi all 3.0.0-1 [8108 B]
Get:194 http://deb.debian.org/debian buster/main amd64 node-mkdirp all 0.5.1-1 [4708 B]
Get:195 http://deb.debian.org/debian buster/main amd64 node-run-queue all 1.0.3-1 [4416 B]
Get:196 http://deb.debian.org/debian buster/main amd64 node-rimraf all 2.6.2-1 [8112 B]
Get:197 http://deb.debian.org/debian buster/main amd64 node-imurmurhash all 0.1.4-1 [8154 B]
Get:198 http://deb.debian.org/debian buster/main amd64 node-iferr all 1.0.2-1 [3496 B]
Get:199 http://deb.debian.org/debian buster/main amd64 node-fs-write-stream-atomic all 1.0.10-4 [4820 B]
Get:200 http://deb.debian.org/debian buster/main amd64 node-copy-concurrently all 1.0.5-4 [6516 B]
Get:201 http://deb.debian.org/debian buster/main amd64 node-move-concurrently all 1.0.1-2 [4644 B]
Get:202 http://deb.debian.org/debian buster/main amd64 node-promise-inflight all 1.0.1-1 [3104 B]
Get:203 http://deb.debian.org/debian buster/main amd64 node-ssri all 5.2.4-2 [14.1 kB]
Get:204 http://deb.debian.org/debian buster/main amd64 node-unique-filename all 1.1.0+ds-2 [4416 B]
Get:205 http://deb.debian.org/debian buster/main amd64 node-y18n all 3.2.1-2+deb10u1 [4924 B]
Get:206 http://deb.debian.org/debian buster/main amd64 node-cacache all 11.3.2-2 [29.5 kB]
Get:207 http://deb.debian.org/debian buster/main amd64 node-call-limit all 1.1.0-1 [3576 B]
Get:208 http://deb.debian.org/debian buster/main amd64 node-caseless all 0.12.0-1 [3334 B]
Get:209 http://deb.debian.org/debian buster/main amd64 node-wrap-ansi all 4.0.0-1 [5444 B]
Get:210 http://deb.debian.org/debian buster/main amd64 node-cliui all 4.1.0-1 [7832 B]
Get:211 http://deb.debian.org/debian buster/main amd64 node-delayed-stream all 0.0.5-1 [4482 B]
Get:212 http://deb.debian.org/debian buster/main amd64 node-combined-stream all 1.0.7-1 [6024 B]
Get:213 http://deb.debian.org/debian buster/main amd64 node-proto-list all 1.2.4-1 [3046 B]
Get:214 http://deb.debian.org/debian buster/main amd64 node-ini all 1.3.5-1+deb10u1 [5924 B]
Get:215 http://deb.debian.org/debian buster/main amd64 node-config-chain all 1.1.11-1 [7612 B]
Get:216 http://deb.debian.org/debian buster/main amd64 node-console-control-strings all 1.1.0-1 [4906 B]
Get:217 http://deb.debian.org/debian buster/main amd64 node-dashdash all 1.14.1-2 [22.2 kB]
Get:218 http://deb.debian.org/debian buster/main amd64 node-decamelize all 1.2.0-1 [3044 B]
Get:219 http://deb.debian.org/debian buster/main amd64 node-mimic-response all 1.0.0-1 [3302 B]
Get:220 http://deb.debian.org/debian buster/main amd64 node-decompress-response all 3.3.0-1 [3262 B]
Get:221 http://deb.debian.org/debian buster/main amd64 node-deep-extend all 0.4.1-2 [5000 B]
Get:222 http://deb.debian.org/debian buster/main amd64 node-detect-indent all 5.0.0-1 [4392 B]
Get:223 http://deb.debian.org/debian buster/main amd64 node-detect-newline all 2.1.0-1 [2972 B]
Get:224 http://deb.debian.org/debian buster/main amd64 node-duplexer3 all 0.1.4-4 [4844 B]
Get:225 http://deb.debian.org/debian buster/main amd64 node-jsbn all 1.1.0-1 [13.5 kB]
Get:226 http://deb.debian.org/debian buster/main amd64 node-ecc-jsbn all 0.1.1-1 [8832 B]
Get:227 http://deb.debian.org/debian buster/main amd64 node-editor all 1.0.0-1 [3296 B]
Get:228 http://deb.debian.org/debian buster/main amd64 node-iconv-lite all 0.4.13-2 [122 kB]
Get:229 http://deb.debian.org/debian buster/main amd64 node-encoding all 0.1.12-2 [4262 B]
Get:230 http://deb.debian.org/debian buster/main amd64 node-prr all 1.0.1-1 [3682 B]
Get:231 http://deb.debian.org/debian buster/main amd64 node-errno all 0.1.4-1 [6572 B]
Get:232 http://deb.debian.org/debian buster/main amd64 node-extend all 3.0.2-1 [6744 B]
Get:233 http://deb.debian.org/debian buster/main amd64 node-extsprintf all 1.3.0-1 [4452 B]
Get:234 http://deb.debian.org/debian buster/main amd64 node-p-limit all 1.1.0-1 [3382 B]
Get:235 http://deb.debian.org/debian buster/main amd64 node-p-locate all 2.0.0-1 [3986 B]
Get:236 http://deb.debian.org/debian buster/main amd64 node-path-exists all 3.0.0-1 [3154 B]
Get:237 http://deb.debian.org/debian buster/main amd64 node-locate-path all 2.0.0-1 [3816 B]
Get:238 http://deb.debian.org/debian buster/main amd64 node-find-up all 2.1.0-1 [3652 B]
Get:239 http://deb.debian.org/debian buster/main amd64 node-forever-agent all 0.6.1-1 [3536 B]
Get:240 http://deb.debian.org/debian buster/main amd64 node-mime-types all 2.1.21-1 [16.5 kB]
Get:241 http://deb.debian.org/debian buster/main amd64 node-form-data all 2.3.2-2 [10.0 kB]
Get:242 http://deb.debian.org/debian buster/main amd64 node-path-is-inside all 1.0.2-1 [3940 B]
Get:243 http://deb.debian.org/debian buster/main amd64 node-fs-vacuum all 1.2.10-2 [4232 B]
Get:244 http://deb.debian.org/debian buster/main amd64 node-object-assign all 4.1.1-2 [4336 B]
Get:245 http://deb.debian.org/debian buster/main amd64 node-has-unicode all 2.0.1-2 [3442 B]
Get:246 http://deb.debian.org/debian buster/main amd64 node-wide-align all 1.1.0-1 [3438 B]
Get:247 http://deb.debian.org/debian buster/main amd64 node-gauge all 2.7.4-1 [25.1 kB]
Get:248 http://deb.debian.org/debian buster/main amd64 node-get-caller-file all 1.0.2-1 [2814 B]
Get:249 http://deb.debian.org/debian buster/main amd64 node-getpass all 0.1.7-1 [4142 B]
Get:250 http://deb.debian.org/debian buster/main amd64 node-is-retry-allowed all 1.1.0-1 [3296 B]
Get:251 http://deb.debian.org/debian buster/main amd64 node-p-cancelable all 0.3.0-1 [4322 B]
Get:252 http://deb.debian.org/debian buster/main amd64 node-p-timeout all 1.2.0-1 [3642 B]
Get:253 http://deb.debian.org/debian buster/main amd64 node-is-plain-obj all 1.1.0-1 [2918 B]
Get:254 http://deb.debian.org/debian buster/main amd64 node-url-to-options all 1.0.1-1 [3152 B]
Get:255 http://deb.debian.org/debian buster/main amd64 node-timed-out all 4.0.1-4 [3972 B]
Get:256 http://deb.debian.org/debian buster/main amd64 node-lowercase-keys all 1.0.0-2 [3108 B]
Get:257 http://deb.debian.org/debian buster/main amd64 node-is-object all 1.0.1-1 [3288 B]
Get:258 http://deb.debian.org/debian buster/main amd64 node-has-symbol-support-x all 1.4.1+dfsg-1 [3948 B]
Get:259 http://deb.debian.org/debian buster/main amd64 node-has-to-string-tag-x all 1.4.1+dfsg-1 [4066 B]
Get:260 http://deb.debian.org/debian buster/main amd64 node-isurl all 1.0.0-1 [3598 B]
Get:261 http://deb.debian.org/debian buster/main amd64 node-prepend-http all 2.0.0-1 [3292 B]
Get:262 http://deb.debian.org/debian buster/main amd64 node-url-parse-lax all 1.0.0-1 [3222 B]
Get:263 http://deb.debian.org/debian buster/main amd64 node-got all 7.1.0-1 [11.7 kB]
Get:264 http://deb.debian.org/debian buster/main amd64 node-nopt all 3.0.6-3 [9538 B]
Get:265 http://deb.debian.org/debian buster/main amd64 node-set-blocking all 2.0.0-1 [3806 B]
Get:266 http://deb.debian.org/debian buster/main amd64 node-npmlog all 4.1.2-1 [8592 B]
Get:267 http://deb.debian.org/debian buster/main amd64 node-osenv all 0.1.5-1 [4332 B]
Get:268 http://deb.debian.org/debian buster/main amd64 node-har-schema all 2.0.0-1 [5254 B]
Get:269 http://deb.debian.org/debian buster/main amd64 node-har-validator all 5.1.0-1 [4548 B]
Get:270 http://deb.debian.org/debian buster/main amd64 node-json-schema all 0.2.3-1 [6996 B]
Get:271 http://deb.debian.org/debian buster/main amd64 node-verror all 1.10.0-1 [13.9 kB]
Get:272 http://deb.debian.org/debian buster/main amd64 node-jsprim all 1.4.0-1 [13.2 kB]
Get:273 http://deb.debian.org/debian buster/main amd64 node-sshpk all 1.13.1+dfsg-2 [44.4 kB]
Get:274 http://deb.debian.org/debian buster/main amd64 node-http-signature all 1.2.0-1 [11.1 kB]
Get:275 http://deb.debian.org/debian buster/main amd64 node-is-typedarray all 1.0.0-2 [2422 B]
Get:276 http://deb.debian.org/debian buster/main amd64 node-isstream all 0.1.2+dfsg-1 [3546 B]
Get:277 http://deb.debian.org/debian buster/main amd64 node-json-stringify-safe all 5.0.1-1 [4124 B]
Get:278 http://deb.debian.org/debian buster/main amd64 node-oauth-sign all 0.9.0-1 [3676 B]
Get:279 http://deb.debian.org/debian buster/main amd64 node-performance-now all 2.1.0+debian-1 [4442 B]
Get:280 http://deb.debian.org/debian buster/main amd64 node-qs all 6.5.2-1 [16.4 kB]
Get:281 http://deb.debian.org/debian buster/main amd64 node-punycode all 2.1.1-2 [9404 B]
Get:282 http://deb.debian.org/debian buster/main amd64 node-tough-cookie all 2.3.4+dfsg-1 [56.1 kB]
Get:283 http://deb.debian.org/debian buster/main amd64 node-tunnel-agent all 0.6.1-1 [4288 B]
Get:284 http://deb.debian.org/debian buster/main amd64 node-uuid all 3.3.2-2 [18.2 kB]
Get:285 http://deb.debian.org/debian buster/main amd64 node-node-uuid all 3.3.2-2 [5744 B]
Get:286 http://deb.debian.org/debian buster/main amd64 node-request all 2.88.1-2 [53.8 kB]
Get:287 http://deb.debian.org/debian buster/main amd64 node-semver all 5.5.1-1 [23.9 kB]
Get:288 http://deb.debian.org/debian buster/main amd64 node-tar all 4.4.6+ds1-3 [31.8 kB]
Get:289 http://deb.debian.org/debian buster/main amd64 node-gyp all 3.8.0-6 [36.9 kB]
Get:290 http://deb.debian.org/debian buster/main amd64 node-hosted-git-info all 2.7.1-1+deb10u1 [8380 B]
Get:291 http://deb.debian.org/debian buster/main amd64 node-import-lazy all 3.0.0.REALLY.2.1.0-1 [4000 B]
Get:292 http://deb.debian.org/debian buster/main amd64 node-invert-kv all 1.0.0-1 [2862 B]
Get:293 http://deb.debian.org/debian buster/main amd64 node-is-builtin-module all 2.0.0-1 [3156 B]
Get:294 http://deb.debian.org/debian buster/main amd64 node-is-npm all 1.0.0-1 [2836 B]
Get:295 http://deb.debian.org/debian buster/main amd64 node-json-parse-better-errors all 1.0.2-2 [5080 B]
Get:296 http://deb.debian.org/debian buster/main amd64 node-jsonparse all 1.3.1-6 [7012 B]
Get:297 http://deb.debian.org/debian buster/main amd64 node-through all 2.3.8-1 [4182 B]
Get:298 http://deb.debian.org/debian buster/main amd64 node-jsonstream all 1.3.2-1 [8092 B]
Get:299 http://deb.debian.org/debian buster/main amd64 node-minimist all 1.2.0-1+deb10u1 [5856 B]
Get:300 http://deb.debian.org/debian buster/main amd64 node-strip-json-comments all 2.0.1-2 [4016 B]
Get:301 http://deb.debian.org/debian buster/main amd64 node-rc all 1.1.6-2 [6058 B]
Get:302 http://deb.debian.org/debian buster/main amd64 node-registry-url all 3.1.0-1 [3172 B]
Get:303 http://deb.debian.org/debian buster/main amd64 node-registry-auth-token all 3.3.1-1 [5642 B]
Get:304 http://deb.debian.org/debian buster/main amd64 node-package-json all 4.0.1-1 [4180 B]
Get:305 http://deb.debian.org/debian buster/main amd64 node-latest-version all 3.1.0-1 [3128 B]
Get:306 http://deb.debian.org/debian buster/main amd64 node-lazy-property all 1.0.0-3 [3556 B]
Get:307 http://deb.debian.org/debian buster/main amd64 node-lcid all 1.0.0-1 [4232 B]
Get:308 http://deb.debian.org/debian buster/main amd64 node-validate-npm-package-name all 3.0.0-1 [4432 B]
Get:309 http://deb.debian.org/debian buster/main amd64 node-npm-package-arg all 6.0.0-2 [6752 B]
Get:310 http://deb.debian.org/debian buster/main amd64 node-require-directory all 2.1.1-1 [5364 B]
Get:311 http://deb.debian.org/debian buster/main amd64 node-require-main-filename all 1.0.1-1 [3152 B]
Get:312 http://deb.debian.org/debian buster/main amd64 node-which-module all 2.0.0-1 [3792 B]
Get:313 http://deb.debian.org/debian buster/main amd64 node-mimic-fn all 1.1.0-1 [3070 B]
Get:314 http://deb.debian.org/debian buster/main amd64 node-mem all 1.1.0-1 [4076 B]
Get:315 http://deb.debian.org/debian buster/main amd64 node-os-locale all 2.0.0-1 [3702 B]
Get:316 http://deb.debian.org/debian buster/main amd64 node-yargs-parser all 11.1.1-1+deb10u1 [16.7 kB]
Get:317 http://deb.debian.org/debian buster/main amd64 node-yargs all 10.0.3-2 [57.1 kB]
Get:318 http://deb.debian.org/debian buster/main amd64 node-libnpx all 10.2.0+repack-1 [41.8 kB]
Get:319 http://deb.debian.org/debian buster/main amd64 node-lockfile all 1.0.4-1 [7272 B]
Get:320 http://deb.debian.org/debian buster/main amd64 node-mute-stream all 0.0.8-1 [4608 B]
Get:321 http://deb.debian.org/debian buster/main amd64 node-spdx-license-ids all 1.2.2-1 [4754 B]
Get:322 http://deb.debian.org/debian buster/main amd64 node-spdx-correct all 1.0.2-1 [3678 B]
Get:323 http://deb.debian.org/debian buster/main amd64 node-spdx-expression-parse all 1.0.4-1 [12.1 kB]
Get:324 http://deb.debian.org/debian buster/main amd64 node-validate-npm-package-license all 3.0.1-1 [3442 B]
Get:325 http://deb.debian.org/debian buster/main amd64 node-normalize-package-data all 2.4.0-1 [10.8 kB]
Get:326 http://deb.debian.org/debian buster/main amd64 node-opener all 1.4.3-1 [4094 B]
Get:327 http://deb.debian.org/debian buster/main amd64 node-read all 1.0.7-1 [4540 B]
Get:328 http://deb.debian.org/debian buster/main amd64 node-promzard all 0.3.0-1 [8964 B]
Get:329 http://deb.debian.org/debian buster/main amd64 node-qw all 1.0.1-1 [3080 B]
Get:330 http://deb.debian.org/debian buster/main amd64 node-slash all 1.0.0-1 [2976 B]
Get:331 http://deb.debian.org/debian buster/main amd64 node-read-package-json all 2.0.13-1 [8388 B]
Get:332 http://deb.debian.org/debian buster/main amd64 node-resolve-from all 4.0.0-1 [3684 B]
Get:333 http://deb.debian.org/debian buster/main amd64 node-retry all 0.10.1-1 [7980 B]
Get:334 http://deb.debian.org/debian buster/main amd64 node-semver-diff all 2.1.0-2 [3356 B]
Get:335 http://deb.debian.org/debian buster/main amd64 node-sha all 2.0.1-1 [4336 B]
Get:336 http://deb.debian.org/debian buster/main amd64 node-slide all 1.1.6-2 [6292 B]
Get:337 http://deb.debian.org/debian buster/main amd64 node-sorted-object all 2.0.1-1 [3686 B]
Get:338 http://deb.debian.org/debian buster/main amd64 node-stream-iterate all 1.2.0-4 [3736 B]
Get:339 http://deb.debian.org/debian buster/main amd64 node-text-table all 0.2.0-2 [4308 B]
Get:340 http://deb.debian.org/debian buster/main amd64 node-uid-number all 0.0.6-1 [3068 B]
Get:341 http://deb.debian.org/debian buster/main amd64 node-unpipe all 1.0.0-1 [3582 B]
Get:342 http://deb.debian.org/debian buster/main amd64 node-write-file-atomic all 2.3.0-1 [4878 B]
Get:343 http://deb.debian.org/debian buster/main amd64 node-xdg-basedir all 3.0.0-1 [3660 B]
Get:344 http://deb.debian.org/debian buster/main amd64 nodejs-doc all 10.24.0~dfsg-1~deb10u1 [974 kB]
Get:345 http://deb.debian.org/debian buster/main amd64 npm all 5.8.0+ds6-4+deb10u2 [1017 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 92.8 MB in 9s (10.2 MB/s)
Selecting previously unselected package perl-modules-5.28.
(Reading database ... 6840 files and directories currently installed.)
Preparing to unpack .../00-perl-modules-5.28_5.28.1-6+deb10u1_all.deb ...
Unpacking perl-modules-5.28 (5.28.1-6+deb10u1) ...
Selecting previously unselected package libgdbm-compat4:amd64.
Preparing to unpack .../01-libgdbm-compat4_1.18.1-4_amd64.deb ...
Unpacking libgdbm-compat4:amd64 (1.18.1-4) ...
Selecting previously unselected package libperl5.28:amd64.
Preparing to unpack .../02-libperl5.28_5.28.1-6+deb10u1_amd64.deb ...
Unpacking libperl5.28:amd64 (5.28.1-6+deb10u1) ...
Selecting previously unselected package perl.
Preparing to unpack .../03-perl_5.28.1-6+deb10u1_amd64.deb ...
Unpacking perl (5.28.1-6+deb10u1) ...
Selecting previously unselected package libpython2.7-minimal:amd64.
Preparing to unpack .../04-libpython2.7-minimal_2.7.16-2+deb10u1_amd64.deb ...
Unpacking libpython2.7-minimal:amd64 (2.7.16-2+deb10u1) ...
Selecting previously unselected package python2.7-minimal.
Preparing to unpack .../05-python2.7-minimal_2.7.16-2+deb10u1_amd64.deb ...
Unpacking python2.7-minimal (2.7.16-2+deb10u1) ...
Selecting previously unselected package python2-minimal.
Preparing to unpack .../06-python2-minimal_2.7.16-1_amd64.deb ...
Unpacking python2-minimal (2.7.16-1) ...
Selecting previously unselected package python-minimal.
Preparing to unpack .../07-python-minimal_2.7.16-1_amd64.deb ...
Unpacking python-minimal (2.7.16-1) ...
Selecting previously unselected package mime-support.
Preparing to unpack .../08-mime-support_3.62_all.deb ...
Unpacking mime-support (3.62) ...
Selecting previously unselected package libpython2.7-stdlib:amd64.
Preparing to unpack .../09-libpython2.7-stdlib_2.7.16-2+deb10u1_amd64.deb ...
Unpacking libpython2.7-stdlib:amd64 (2.7.16-2+deb10u1) ...
Selecting previously unselected package python2.7.
Preparing to unpack .../10-python2.7_2.7.16-2+deb10u1_amd64.deb ...
Unpacking python2.7 (2.7.16-2+deb10u1) ...
Selecting previously unselected package libpython2-stdlib:amd64.
Preparing to unpack .../11-libpython2-stdlib_2.7.16-1_amd64.deb ...
Unpacking libpython2-stdlib:amd64 (2.7.16-1) ...
Selecting previously unselected package libpython-stdlib:amd64.
Preparing to unpack .../12-libpython-stdlib_2.7.16-1_amd64.deb ...
Unpacking libpython-stdlib:amd64 (2.7.16-1) ...
Setting up libpython2.7-minimal:amd64 (2.7.16-2+deb10u1) ...
Setting up python2.7-minimal (2.7.16-2+deb10u1) ...
Linking and byte-compiling packages for runtime python2.7...
Setting up python2-minimal (2.7.16-1) ...
Selecting previously unselected package python2.
(Reading database ... 9565 files and directories currently installed.)
Preparing to unpack .../python2_2.7.16-1_amd64.deb ...
Unpacking python2 (2.7.16-1) ...
Setting up python-minimal (2.7.16-1) ...
Selecting previously unselected package python.
(Reading database ... 9598 files and directories currently installed.)
Preparing to unpack .../000-python_2.7.16-1_amd64.deb ...
Unpacking python (2.7.16-1) ...
Selecting previously unselected package liblocale-gettext-perl.
Preparing to unpack .../001-liblocale-gettext-perl_1.07-3+b4_amd64.deb ...
Unpacking liblocale-gettext-perl (1.07-3+b4) ...
Selecting previously unselected package bzip2.
Preparing to unpack .../002-bzip2_1.0.6-9.2~deb10u1_amd64.deb ...
Unpacking bzip2 (1.0.6-9.2~deb10u1) ...
Selecting previously unselected package libmagic-mgc.
Preparing to unpack .../003-libmagic-mgc_1%3a5.35-4+deb10u2_amd64.deb ...
Unpacking libmagic-mgc (1:5.35-4+deb10u2) ...
Selecting previously unselected package libmagic1:amd64.
Preparing to unpack .../004-libmagic1_1%3a5.35-4+deb10u2_amd64.deb ...
Unpacking libmagic1:amd64 (1:5.35-4+deb10u2) ...
Selecting previously unselected package file.
Preparing to unpack .../005-file_1%3a5.35-4+deb10u2_amd64.deb ...
Unpacking file (1:5.35-4+deb10u2) ...
Selecting previously unselected package krb5-locales.
Preparing to unpack .../006-krb5-locales_1.17-3+deb10u2_all.deb ...
Unpacking krb5-locales (1.17-3+deb10u2) ...
Selecting previously unselected package libkeyutils1:amd64.
Preparing to unpack .../007-libkeyutils1_1.6-6_amd64.deb ...
Unpacking libkeyutils1:amd64 (1.6-6) ...
Selecting previously unselected package libkrb5support0:amd64.
Preparing to unpack .../008-libkrb5support0_1.17-3+deb10u2_amd64.deb ...
Unpacking libkrb5support0:amd64 (1.17-3+deb10u2) ...
Selecting previously unselected package libk5crypto3:amd64.
Preparing to unpack .../009-libk5crypto3_1.17-3+deb10u2_amd64.deb ...
Unpacking libk5crypto3:amd64 (1.17-3+deb10u2) ...
Selecting previously unselected package libkrb5-3:amd64.
Preparing to unpack .../010-libkrb5-3_1.17-3+deb10u2_amd64.deb ...
Unpacking libkrb5-3:amd64 (1.17-3+deb10u2) ...
Selecting previously unselected package libgssapi-krb5-2:amd64.
Preparing to unpack .../011-libgssapi-krb5-2_1.17-3+deb10u2_amd64.deb ...
Unpacking libgssapi-krb5-2:amd64 (1.17-3+deb10u2) ...
Selecting previously unselected package manpages.
Preparing to unpack .../012-manpages_4.16-2_all.deb ...
Unpacking manpages (4.16-2) ...
Selecting previously unselected package xz-utils.
Preparing to unpack .../013-xz-utils_5.2.4-1_amd64.deb ...
Unpacking xz-utils (5.2.4-1) ...
Selecting previously unselected package binutils-common:amd64.
Preparing to unpack .../014-binutils-common_2.31.1-16_amd64.deb ...
Unpacking binutils-common:amd64 (2.31.1-16) ...
Selecting previously unselected package libbinutils:amd64.
Preparing to unpack .../015-libbinutils_2.31.1-16_amd64.deb ...
Unpacking libbinutils:amd64 (2.31.1-16) ...
Selecting previously unselected package binutils-x86-64-linux-gnu.
Preparing to unpack .../016-binutils-x86-64-linux-gnu_2.31.1-16_amd64.deb ...
Unpacking binutils-x86-64-linux-gnu (2.31.1-16) ...
Selecting previously unselected package binutils.
Preparing to unpack .../017-binutils_2.31.1-16_amd64.deb ...
Unpacking binutils (2.31.1-16) ...
Selecting previously unselected package libc-dev-bin.
Preparing to unpack .../018-libc-dev-bin_2.28-10_amd64.deb ...
Unpacking libc-dev-bin (2.28-10) ...
Selecting previously unselected package linux-libc-dev:amd64.
Preparing to unpack .../019-linux-libc-dev_4.19.194-3_amd64.deb ...
Unpacking linux-libc-dev:amd64 (4.19.194-3) ...
Selecting previously unselected package libc6-dev:amd64.
Preparing to unpack .../020-libc6-dev_2.28-10_amd64.deb ...
Unpacking libc6-dev:amd64 (2.28-10) ...
Selecting previously unselected package libisl19:amd64.
Preparing to unpack .../021-libisl19_0.20-2_amd64.deb ...
Unpacking libisl19:amd64 (0.20-2) ...
Selecting previously unselected package libmpfr6:amd64.
Preparing to unpack .../022-libmpfr6_4.0.2-1_amd64.deb ...
Unpacking libmpfr6:amd64 (4.0.2-1) ...
Selecting previously unselected package libmpc3:amd64.
Preparing to unpack .../023-libmpc3_1.1.0-1_amd64.deb ...
Unpacking libmpc3:amd64 (1.1.0-1) ...
Selecting previously unselected package cpp-8.
Preparing to unpack .../024-cpp-8_8.3.0-6_amd64.deb ...
Unpacking cpp-8 (8.3.0-6) ...
Selecting previously unselected package cpp.
Preparing to unpack .../025-cpp_4%3a8.3.0-1_amd64.deb ...
Unpacking cpp (4:8.3.0-1) ...
Selecting previously unselected package libcc1-0:amd64.
Preparing to unpack .../026-libcc1-0_8.3.0-6_amd64.deb ...
Unpacking libcc1-0:amd64 (8.3.0-6) ...
Selecting previously unselected package libgomp1:amd64.
Preparing to unpack .../027-libgomp1_8.3.0-6_amd64.deb ...
Unpacking libgomp1:amd64 (8.3.0-6) ...
Selecting previously unselected package libitm1:amd64.
Preparing to unpack .../028-libitm1_8.3.0-6_amd64.deb ...
Unpacking libitm1:amd64 (8.3.0-6) ...
Selecting previously unselected package libatomic1:amd64.
Preparing to unpack .../029-libatomic1_8.3.0-6_amd64.deb ...
Unpacking libatomic1:amd64 (8.3.0-6) ...
Selecting previously unselected package libasan5:amd64.
Preparing to unpack .../030-libasan5_8.3.0-6_amd64.deb ...
Unpacking libasan5:amd64 (8.3.0-6) ...
Selecting previously unselected package liblsan0:amd64.
Preparing to unpack .../031-liblsan0_8.3.0-6_amd64.deb ...
Unpacking liblsan0:amd64 (8.3.0-6) ...
Selecting previously unselected package libtsan0:amd64.
Preparing to unpack .../032-libtsan0_8.3.0-6_amd64.deb ...
Unpacking libtsan0:amd64 (8.3.0-6) ...
Selecting previously unselected package libubsan1:amd64.
Preparing to unpack .../033-libubsan1_8.3.0-6_amd64.deb ...
Unpacking libubsan1:amd64 (8.3.0-6) ...
Selecting previously unselected package libmpx2:amd64.
Preparing to unpack .../034-libmpx2_8.3.0-6_amd64.deb ...
Unpacking libmpx2:amd64 (8.3.0-6) ...
Selecting previously unselected package libquadmath0:amd64.
Preparing to unpack .../035-libquadmath0_8.3.0-6_amd64.deb ...
Unpacking libquadmath0:amd64 (8.3.0-6) ...
Selecting previously unselected package libgcc-8-dev:amd64.
Preparing to unpack .../036-libgcc-8-dev_8.3.0-6_amd64.deb ...
Unpacking libgcc-8-dev:amd64 (8.3.0-6) ...
Selecting previously unselected package gcc-8.
Preparing to unpack .../037-gcc-8_8.3.0-6_amd64.deb ...
Unpacking gcc-8 (8.3.0-6) ...
Selecting previously unselected package gcc.
Preparing to unpack .../038-gcc_4%3a8.3.0-1_amd64.deb ...
Unpacking gcc (4:8.3.0-1) ...
Selecting previously unselected package libstdc++-8-dev:amd64.
Preparing to unpack .../039-libstdc++-8-dev_8.3.0-6_amd64.deb ...
Unpacking libstdc++-8-dev:amd64 (8.3.0-6) ...
Selecting previously unselected package g++-8.
Preparing to unpack .../040-g++-8_8.3.0-6_amd64.deb ...
Unpacking g++-8 (8.3.0-6) ...
Selecting previously unselected package g++.
Preparing to unpack .../041-g++_4%3a8.3.0-1_amd64.deb ...
Unpacking g++ (4:8.3.0-1) ...
Selecting previously unselected package make.
Preparing to unpack .../042-make_4.2.1-1.2_amd64.deb ...
Unpacking make (4.2.1-1.2) ...
Selecting previously unselected package libdpkg-perl.
Preparing to unpack .../043-libdpkg-perl_1.19.7_all.deb ...
Unpacking libdpkg-perl (1.19.7) ...
Selecting previously unselected package patch.
Preparing to unpack .../044-patch_2.7.6-3+deb10u1_amd64.deb ...
Unpacking patch (2.7.6-3+deb10u1) ...
Selecting previously unselected package dpkg-dev.
Preparing to unpack .../045-dpkg-dev_1.19.7_all.deb ...
Unpacking dpkg-dev (1.19.7) ...
Selecting previously unselected package build-essential.
Preparing to unpack .../046-build-essential_12.6_amd64.deb ...
Unpacking build-essential (12.6) ...
Selecting previously unselected package libassuan0:amd64.
Preparing to unpack .../047-libassuan0_2.5.2-1_amd64.deb ...
Unpacking libassuan0:amd64 (2.5.2-1) ...
Selecting previously unselected package gpgconf.
Preparing to unpack .../048-gpgconf_2.2.12-1+deb10u1_amd64.deb ...
Unpacking gpgconf (2.2.12-1+deb10u1) ...
Selecting previously unselected package lsb-base.
Preparing to unpack .../049-lsb-base_10.2019051400_all.deb ...
Unpacking lsb-base (10.2019051400) ...
Selecting previously unselected package libksba8:amd64.
Preparing to unpack .../050-libksba8_1.3.5-2_amd64.deb ...
Unpacking libksba8:amd64 (1.3.5-2) ...
Selecting previously unselected package libsasl2-modules-db:amd64.
Preparing to unpack .../051-libsasl2-modules-db_2.1.27+dfsg-1+deb10u1_amd64.deb ...
Unpacking libsasl2-modules-db:amd64 (2.1.27+dfsg-1+deb10u1) ...
Selecting previously unselected package libsasl2-2:amd64.
Preparing to unpack .../052-libsasl2-2_2.1.27+dfsg-1+deb10u1_amd64.deb ...
Unpacking libsasl2-2:amd64 (2.1.27+dfsg-1+deb10u1) ...
Selecting previously unselected package libldap-common.
Preparing to unpack .../053-libldap-common_2.4.47+dfsg-3+deb10u6_all.deb ...
Unpacking libldap-common (2.4.47+dfsg-3+deb10u6) ...
Selecting previously unselected package libldap-2.4-2:amd64.
Preparing to unpack .../054-libldap-2.4-2_2.4.47+dfsg-3+deb10u6_amd64.deb ...
Unpacking libldap-2.4-2:amd64 (2.4.47+dfsg-3+deb10u6) ...
Selecting previously unselected package libnpth0:amd64.
Preparing to unpack .../055-libnpth0_1.6-1_amd64.deb ...
Unpacking libnpth0:amd64 (1.6-1) ...
Selecting previously unselected package dirmngr.
Preparing to unpack .../056-dirmngr_2.2.12-1+deb10u1_amd64.deb ...
Unpacking dirmngr (2.2.12-1+deb10u1) ...
Selecting previously unselected package libfakeroot:amd64.
Preparing to unpack .../057-libfakeroot_1.23-1_amd64.deb ...
Unpacking libfakeroot:amd64 (1.23-1) ...
Selecting previously unselected package fakeroot.
Preparing to unpack .../058-fakeroot_1.23-1_amd64.deb ...
Unpacking fakeroot (1.23-1) ...
Selecting previously unselected package gnupg-l10n.
Preparing to unpack .../059-gnupg-l10n_2.2.12-1+deb10u1_all.deb ...
Unpacking gnupg-l10n (2.2.12-1+deb10u1) ...
Selecting previously unselected package gnupg-utils.
Preparing to unpack .../060-gnupg-utils_2.2.12-1+deb10u1_amd64.deb ...
Unpacking gnupg-utils (2.2.12-1+deb10u1) ...
Selecting previously unselected package gpg.
Preparing to unpack .../061-gpg_2.2.12-1+deb10u1_amd64.deb ...
Unpacking gpg (2.2.12-1+deb10u1) ...
Selecting previously unselected package pinentry-curses.
Preparing to unpack .../062-pinentry-curses_1.1.0-2_amd64.deb ...
Unpacking pinentry-curses (1.1.0-2) ...
Selecting previously unselected package gpg-agent.
Preparing to unpack .../063-gpg-agent_2.2.12-1+deb10u1_amd64.deb ...
Unpacking gpg-agent (2.2.12-1+deb10u1) ...
Selecting previously unselected package gpg-wks-client.
Preparing to unpack .../064-gpg-wks-client_2.2.12-1+deb10u1_amd64.deb ...
Unpacking gpg-wks-client (2.2.12-1+deb10u1) ...
Selecting previously unselected package gpg-wks-server.
Preparing to unpack .../065-gpg-wks-server_2.2.12-1+deb10u1_amd64.deb ...
Unpacking gpg-wks-server (2.2.12-1+deb10u1) ...
Selecting previously unselected package gpgsm.
Preparing to unpack .../066-gpgsm_2.2.12-1+deb10u1_amd64.deb ...
Unpacking gpgsm (2.2.12-1+deb10u1) ...
Selecting previously unselected package gnupg.
Preparing to unpack .../067-gnupg_2.2.12-1+deb10u1_all.deb ...
Unpacking gnupg (2.2.12-1+deb10u1) ...
Selecting previously unselected package python-pkg-resources.
Preparing to unpack .../068-python-pkg-resources_40.8.0-1_all.deb ...
Unpacking python-pkg-resources (40.8.0-1) ...
Selecting previously unselected package gyp.
Preparing to unpack .../069-gyp_0.1+20180428git4d467626-3_all.deb ...
Unpacking gyp (0.1+20180428git4d467626-3) ...
Selecting previously unselected package javascript-common.
Preparing to unpack .../070-javascript-common_11_all.deb ...
Unpacking javascript-common (11) ...
Selecting previously unselected package libalgorithm-diff-perl.
Preparing to unpack .../071-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 .../072-libalgorithm-diff-xs-perl_0.04-5+b1_amd64.deb ...
Unpacking libalgorithm-diff-xs-perl (0.04-5+b1) ...
Selecting previously unselected package libalgorithm-merge-perl.
Preparing to unpack .../073-libalgorithm-merge-perl_0.08-3_all.deb ...
Unpacking libalgorithm-merge-perl (0.08-3) ...
Selecting previously unselected package libbrotli1:amd64.
Preparing to unpack .../074-libbrotli1_1.0.7-2+deb10u1_amd64.deb ...
Unpacking libbrotli1:amd64 (1.0.7-2+deb10u1) ...
Selecting previously unselected package libfile-fcntllock-perl.
Preparing to unpack .../075-libfile-fcntllock-perl_0.22-3+b5_amd64.deb ...
Unpacking libfile-fcntllock-perl (0.22-3+b5) ...
Selecting previously unselected package libicu63:amd64.
Preparing to unpack .../076-libicu63_63.1-6+deb10u1_amd64.deb ...
Unpacking libicu63:amd64 (63.1-6+deb10u1) ...
Selecting previously unselected package libjs-inherits.
Preparing to unpack .../077-libjs-inherits_2.0.3-1_all.deb ...
Unpacking libjs-inherits (2.0.3-1) ...
Selecting previously unselected package libjs-is-typedarray.
Preparing to unpack .../078-libjs-is-typedarray_1.0.0-2_all.deb ...
Unpacking libjs-is-typedarray (1.0.0-2) ...
Selecting previously unselected package libssl-dev:amd64.
Preparing to unpack .../079-libssl-dev_1.1.1d-0+deb10u7_amd64.deb ...
Unpacking libssl-dev:amd64 (1.1.1d-0+deb10u7) ...
Selecting previously unselected package libuv1:amd64.
Preparing to unpack .../080-libuv1_1.24.1-1+deb10u1_amd64.deb ...
Unpacking libuv1:amd64 (1.24.1-1+deb10u1) ...
Selecting previously unselected package libuv1-dev:amd64.
Preparing to unpack .../081-libuv1-dev_1.24.1-1+deb10u1_amd64.deb ...
Unpacking libuv1-dev:amd64 (1.24.1-1+deb10u1) ...
Selecting previously unselected package libc-ares2:amd64.
Preparing to unpack .../082-libc-ares2_1.14.0-1+deb10u1_amd64.deb ...
Unpacking libc-ares2:amd64 (1.14.0-1+deb10u1) ...
Selecting previously unselected package libnode64:amd64.
Preparing to unpack .../083-libnode64_10.24.0~dfsg-1~deb10u1_amd64.deb ...
Unpacking libnode64:amd64 (10.24.0~dfsg-1~deb10u1) ...
Selecting previously unselected package libnode-dev:amd64.
Preparing to unpack .../084-libnode-dev_10.24.0~dfsg-1~deb10u1_amd64.deb ...
Unpacking libnode-dev:amd64 (10.24.0~dfsg-1~deb10u1) ...
Selecting previously unselected package libpq5:amd64.
Preparing to unpack .../085-libpq5_11.12-0+deb10u1_amd64.deb ...
Unpacking libpq5:amd64 (11.12-0+deb10u1) ...
Selecting previously unselected package libpq-dev.
Preparing to unpack .../086-libpq-dev_11.12-0+deb10u1_amd64.deb ...
Unpacking libpq-dev (11.12-0+deb10u1) ...
Selecting previously unselected package libsasl2-modules:amd64.
Preparing to unpack .../087-libsasl2-modules_2.1.27+dfsg-1+deb10u1_amd64.deb ...
Unpacking libsasl2-modules:amd64 (2.1.27+dfsg-1+deb10u1) ...
Selecting previously unselected package manpages-dev.
Preparing to unpack .../088-manpages-dev_4.16-2_all.deb ...
Unpacking manpages-dev (4.16-2) ...
Selecting previously unselected package nodejs.
Preparing to unpack .../089-nodejs_10.24.0~dfsg-1~deb10u1_amd64.deb ...
Unpacking nodejs (10.24.0~dfsg-1~deb10u1) ...
Selecting previously unselected package node-abbrev.
Preparing to unpack .../090-node-abbrev_1.1.1-1_all.deb ...
Unpacking node-abbrev (1.1.1-1) ...
Selecting previously unselected package node-jsonify.
Preparing to unpack .../091-node-jsonify_0.0.0-1_all.deb ...
Unpacking node-jsonify (0.0.0-1) ...
Selecting previously unselected package node-json-stable-stringify.
Preparing to unpack .../092-node-json-stable-stringify_1.0.1-1_all.deb ...
Unpacking node-json-stable-stringify (1.0.1-1) ...
Selecting previously unselected package node-co.
Preparing to unpack .../093-node-co_4.6.0-1_all.deb ...
Unpacking node-co (4.6.0-1) ...
Selecting previously unselected package node-ajv.
Preparing to unpack .../094-node-ajv_5.0.0-1_all.deb ...
Unpacking node-ajv (5.0.0-1) ...
Selecting previously unselected package node-ansi.
Preparing to unpack .../095-node-ansi_0.3.0-3_all.deb ...
Unpacking node-ansi (0.3.0-3) ...
Selecting previously unselected package node-clone.
Preparing to unpack .../096-node-clone_2.1.2-1_all.deb ...
Unpacking node-clone (2.1.2-1) ...
Selecting previously unselected package node-defaults.
Preparing to unpack .../097-node-defaults_1.0.3-1_all.deb ...
Unpacking node-defaults (1.0.3-1) ...
Selecting previously unselected package node-wcwidth.js.
Preparing to unpack .../098-node-wcwidth.js_1.0.0-1_all.deb ...
Unpacking node-wcwidth.js (1.0.0-1) ...
Selecting previously unselected package node-ansi-regex.
Preparing to unpack .../099-node-ansi-regex_3.0.0-1_all.deb ...
Unpacking node-ansi-regex (3.0.0-1) ...
Selecting previously unselected package node-strip-ansi.
Preparing to unpack .../100-node-strip-ansi_4.0.0-1_all.deb ...
Unpacking node-strip-ansi (4.0.0-1) ...
Selecting previously unselected package node-string-width.
Preparing to unpack .../101-node-string-width_2.1.1-1_all.deb ...
Unpacking node-string-width (2.1.1-1) ...
Selecting previously unselected package node-ansi-align.
Preparing to unpack .../102-node-ansi-align_2.0.0-1_all.deb ...
Unpacking node-ansi-align (2.0.0-1) ...
Selecting previously unselected package node-color-name.
Preparing to unpack .../103-node-color-name_1.1.3-1_all.deb ...
Unpacking node-color-name (1.1.3-1) ...
Selecting previously unselected package node-color-convert.
Preparing to unpack .../104-node-color-convert_1.9.0-3_all.deb ...
Unpacking node-color-convert (1.9.0-3) ...
Selecting previously unselected package node-ansi-styles.
Preparing to unpack .../105-node-ansi-styles_3.2.1-1_all.deb ...
Unpacking node-ansi-styles (3.2.1-1) ...
Selecting previously unselected package node-ansistyles.
Preparing to unpack .../106-node-ansistyles_0.1.3-1_all.deb ...
Unpacking node-ansistyles (0.1.3-1) ...
Selecting previously unselected package node-aproba.
Preparing to unpack .../107-node-aproba_1.2.0-1_all.deb ...
Unpacking node-aproba (1.2.0-1) ...
Selecting previously unselected package node-archy.
Preparing to unpack .../108-node-archy_1.0.0-2_all.deb ...
Unpacking node-archy (1.0.0-2) ...
Selecting previously unselected package node-delegates.
Preparing to unpack .../109-node-delegates_1.0.0-1_all.deb ...
Unpacking node-delegates (1.0.0-1) ...
Selecting previously unselected package node-are-we-there-yet.
Preparing to unpack .../110-node-are-we-there-yet_1.1.4-1_all.deb ...
Unpacking node-are-we-there-yet (1.1.4-1) ...
Selecting previously unselected package node-asn1.
Preparing to unpack .../111-node-asn1_0.2.3-1_all.deb ...
Unpacking node-asn1 (0.2.3-1) ...
Selecting previously unselected package node-assert-plus.
Preparing to unpack .../112-node-assert-plus_1.0.0-1_all.deb ...
Unpacking node-assert-plus (1.0.0-1) ...
Selecting previously unselected package node-asynckit.
Preparing to unpack .../113-node-asynckit_0.4.0-2_all.deb ...
Unpacking node-asynckit (0.4.0-2) ...
Selecting previously unselected package node-aws-sign2.
Preparing to unpack .../114-node-aws-sign2_0.7.1-1_all.deb ...
Unpacking node-aws-sign2 (0.7.1-1) ...
Selecting previously unselected package node-aws4.
Preparing to unpack .../115-node-aws4_1.8.0-1_all.deb ...
Unpacking node-aws4 (1.8.0-1) ...
Selecting previously unselected package node-balanced-match.
Preparing to unpack .../116-node-balanced-match_0.4.2-1_all.deb ...
Unpacking node-balanced-match (0.4.2-1) ...
Selecting previously unselected package node-tweetnacl.
Preparing to unpack .../117-node-tweetnacl_0.14.5+dfsg-3_all.deb ...
Unpacking node-tweetnacl (0.14.5+dfsg-3) ...
Selecting previously unselected package node-bcrypt-pbkdf.
Preparing to unpack .../118-node-bcrypt-pbkdf_1.0.1-1_all.deb ...
Unpacking node-bcrypt-pbkdf (1.0.1-1) ...
Selecting previously unselected package node-bluebird.
Preparing to unpack .../119-node-bluebird_3.5.1+dfsg2-2_all.deb ...
Unpacking node-bluebird (3.5.1+dfsg2-2) ...
Selecting previously unselected package node-camelcase.
Preparing to unpack .../120-node-camelcase_5.0.0-1_all.deb ...
Unpacking node-camelcase (5.0.0-1) ...
Selecting previously unselected package node-escape-string-regexp.
Preparing to unpack .../121-node-escape-string-regexp_1.0.5-1_all.deb ...
Unpacking node-escape-string-regexp (1.0.5-1) ...
Selecting previously unselected package node-has-flag.
Preparing to unpack .../122-node-has-flag_2.0.0-1_all.deb ...
Unpacking node-has-flag (2.0.0-1) ...
Selecting previously unselected package node-supports-color.
Preparing to unpack .../123-node-supports-color_4.4.0-2_all.deb ...
Unpacking node-supports-color (4.4.0-2) ...
Selecting previously unselected package node-chalk.
Preparing to unpack .../124-node-chalk_2.3.0-2_all.deb ...
Unpacking node-chalk (2.3.0-2) ...
Selecting previously unselected package node-cli-boxes.
Preparing to unpack .../125-node-cli-boxes_1.0.0-1_all.deb ...
Unpacking node-cli-boxes (1.0.0-1) ...
Selecting previously unselected package node-yallist.
Preparing to unpack .../126-node-yallist_3.0.3-1_all.deb ...
Unpacking node-yallist (3.0.3-1) ...
Selecting previously unselected package node-lru-cache.
Preparing to unpack .../127-node-lru-cache_5.1.1-4_all.deb ...
Unpacking node-lru-cache (5.1.1-4) ...
Selecting previously unselected package node-isexe.
Preparing to unpack .../128-node-isexe_2.0.0-4_all.deb ...
Unpacking node-isexe (2.0.0-4) ...
Selecting previously unselected package node-which.
Preparing to unpack .../129-node-which_1.3.0-2_all.deb ...
Unpacking node-which (1.3.0-2) ...
Selecting previously unselected package node-shebang-regex.
Preparing to unpack .../130-node-shebang-regex_2.0.0-1_all.deb ...
Unpacking node-shebang-regex (2.0.0-1) ...
Selecting previously unselected package node-shebang-command.
Preparing to unpack .../131-node-shebang-command_1.2.0-1_all.deb ...
Unpacking node-shebang-command (1.2.0-1) ...
Selecting previously unselected package node-cross-spawn.
Preparing to unpack .../132-node-cross-spawn_5.1.0-2_all.deb ...
Unpacking node-cross-spawn (5.1.0-2) ...
Selecting previously unselected package node-get-stream.
Preparing to unpack .../133-node-get-stream_3.0.0-1_all.deb ...
Unpacking node-get-stream (3.0.0-1) ...
Selecting previously unselected package node-is-stream.
Preparing to unpack .../134-node-is-stream_1.1.0-1_all.deb ...
Unpacking node-is-stream (1.1.0-1) ...
Selecting previously unselected package node-npm-run-path.
Preparing to unpack .../135-node-npm-run-path_2.0.2-2_all.deb ...
Unpacking node-npm-run-path (2.0.2-2) ...
Selecting previously unselected package node-p-finally.
Preparing to unpack .../136-node-p-finally_1.0.0-2_all.deb ...
Unpacking node-p-finally (1.0.0-2) ...
Selecting previously unselected package node-signal-exit.
Preparing to unpack .../137-node-signal-exit_3.0.2-1_all.deb ...
Unpacking node-signal-exit (3.0.2-1) ...
Selecting previously unselected package node-strip-eof.
Preparing to unpack .../138-node-strip-eof_1.0.0-2_all.deb ...
Unpacking node-strip-eof (1.0.0-2) ...
Selecting previously unselected package node-execa.
Preparing to unpack .../139-node-execa_0.10.0+dfsg-1_all.deb ...
Unpacking node-execa (0.10.0+dfsg-1) ...
Selecting previously unselected package node-term-size.
Preparing to unpack .../140-node-term-size_1.2.0+dfsg-2_all.deb ...
Unpacking node-term-size (1.2.0+dfsg-2) ...
Selecting previously unselected package node-widest-line.
Preparing to unpack .../141-node-widest-line_1.2.2-1_all.deb ...
Unpacking node-widest-line (1.2.2-1) ...
Selecting previously unselected package node-boxen.
Preparing to unpack .../142-node-boxen_1.2.2-1_all.deb ...
Unpacking node-boxen (1.2.2-1) ...
Selecting previously unselected package node-concat-map.
Preparing to unpack .../143-node-concat-map_0.0.1-1_all.deb ...
Unpacking node-concat-map (0.0.1-1) ...
Selecting previously unselected package node-brace-expansion.
Preparing to unpack .../144-node-brace-expansion_1.1.8-1_all.deb ...
Unpacking node-brace-expansion (1.1.8-1) ...
Selecting previously unselected package node-builtin-modules.
Preparing to unpack .../145-node-builtin-modules_3.0.0-1_all.deb ...
Unpacking node-builtin-modules (3.0.0-1) ...
Selecting previously unselected package node-builtins.
Preparing to unpack .../146-node-builtins_1.0.3-1_all.deb ...
Unpacking node-builtins (1.0.3-1) ...
Selecting previously unselected package node-chownr.
Preparing to unpack .../147-node-chownr_1.1.1-1_all.deb ...
Unpacking node-chownr (1.1.1-1) ...
Selecting previously unselected package node-minimatch.
Preparing to unpack .../148-node-minimatch_3.0.4-3_all.deb ...
Unpacking node-minimatch (3.0.4-3) ...
Selecting previously unselected package node-inherits.
Preparing to unpack .../149-node-inherits_2.0.3-1_all.deb ...
Unpacking node-inherits (2.0.3-1) ...
Selecting previously unselected package node-wrappy.
Preparing to unpack .../150-node-wrappy_1.0.2-1_all.deb ...
Unpacking node-wrappy (1.0.2-1) ...
Selecting previously unselected package node-once.
Preparing to unpack .../151-node-once_1.4.0-3_all.deb ...
Unpacking node-once (1.4.0-3) ...
Selecting previously unselected package node-fs.realpath.
Preparing to unpack .../152-node-fs.realpath_1.0.0-1_all.deb ...
Unpacking node-fs.realpath (1.0.0-1) ...
Selecting previously unselected package node-inflight.
Preparing to unpack .../153-node-inflight_1.0.6-1_all.deb ...
Unpacking node-inflight (1.0.6-1) ...
Selecting previously unselected package node-path-is-absolute.
Preparing to unpack .../154-node-path-is-absolute_1.0.0-1_all.deb ...
Unpacking node-path-is-absolute (1.0.0-1) ...
Selecting previously unselected package node-glob.
Preparing to unpack .../155-node-glob_7.1.3-2_all.deb ...
Unpacking node-glob (7.1.3-2) ...
Selecting previously unselected package node-graceful-fs.
Preparing to unpack .../156-node-graceful-fs_4.1.11-1_all.deb ...
Unpacking node-graceful-fs (4.1.11-1) ...
Selecting previously unselected package node-typedarray.
Preparing to unpack .../157-node-typedarray_0.0.6-1_all.deb ...
Unpacking node-typedarray (0.0.6-1) ...
Selecting previously unselected package node-concat-stream.
Preparing to unpack .../158-node-concat-stream_1.6.2-1_all.deb ...
Unpacking node-concat-stream (1.6.2-1) ...
Selecting previously unselected package node-end-of-stream.
Preparing to unpack .../159-node-end-of-stream_1.4.1-1_all.deb ...
Unpacking node-end-of-stream (1.4.1-1) ...
Selecting previously unselected package node-core-util-is.
Preparing to unpack .../160-node-core-util-is_1.0.2-1_all.deb ...
Unpacking node-core-util-is (1.0.2-1) ...
Selecting previously unselected package node-safe-buffer.
Preparing to unpack .../161-node-safe-buffer_5.1.2-1_all.deb ...
Unpacking node-safe-buffer (5.1.2-1) ...
Selecting previously unselected package node-string-decoder.
Preparing to unpack .../162-node-string-decoder_1.2.0-1_all.deb ...
Unpacking node-string-decoder (1.2.0-1) ...
Selecting previously unselected package node-process-nextick-args.
Preparing to unpack .../163-node-process-nextick-args_2.0.0-1_all.deb ...
Unpacking node-process-nextick-args (2.0.0-1) ...
Selecting previously unselected package node-util-deprecate.
Preparing to unpack .../164-node-util-deprecate_1.0.2-1_all.deb ...
Unpacking node-util-deprecate (1.0.2-1) ...
Selecting previously unselected package node-isarray.
Preparing to unpack .../165-node-isarray_2.0.4-1_all.deb ...
Unpacking node-isarray (2.0.4-1) ...
Selecting previously unselected package node-readable-stream.
Preparing to unpack .../166-node-readable-stream_2.3.6-1_all.deb ...
Unpacking node-readable-stream (2.3.6-1) ...
Selecting previously unselected package node-stream-shift.
Preparing to unpack .../167-node-stream-shift_1.0.0-1_all.deb ...
Unpacking node-stream-shift (1.0.0-1) ...
Selecting previously unselected package node-duplexify.
Preparing to unpack .../168-node-duplexify_3.6.1-1_all.deb ...
Unpacking node-duplexify (3.6.1-1) ...
Selecting previously unselected package node-flush-write-stream.
Preparing to unpack .../169-node-flush-write-stream_1.0.3-1_all.deb ...
Unpacking node-flush-write-stream (1.0.3-1) ...
Selecting previously unselected package node-from2.
Preparing to unpack .../170-node-from2_2.3.0-1_all.deb ...
Unpacking node-from2 (2.3.0-1) ...
Selecting previously unselected package node-cyclist.
Preparing to unpack .../171-node-cyclist_1.0.1-2_all.deb ...
Unpacking node-cyclist (1.0.1-2) ...
Selecting previously unselected package node-parallel-transform.
Preparing to unpack .../172-node-parallel-transform_1.1.0-2_all.deb ...
Unpacking node-parallel-transform (1.1.0-2) ...
Selecting previously unselected package node-pump.
Preparing to unpack .../173-node-pump_3.0.0-1_all.deb ...
Unpacking node-pump (3.0.0-1) ...
Selecting previously unselected package node-pumpify.
Preparing to unpack .../174-node-pumpify_1.5.1-1_all.deb ...
Unpacking node-pumpify (1.5.1-1) ...
Selecting previously unselected package node-stream-each.
Preparing to unpack .../175-node-stream-each_1.2.2-2_all.deb ...
Unpacking node-stream-each (1.2.2-2) ...
Selecting previously unselected package node-xtend.
Preparing to unpack .../176-node-xtend_4.0.1-2_all.deb ...
Unpacking node-xtend (4.0.1-2) ...
Selecting previously unselected package node-through2.
Preparing to unpack .../177-node-through2_2.0.5-2_all.deb ...
Unpacking node-through2 (2.0.5-2) ...
Selecting previously unselected package node-mississippi.
Preparing to unpack .../178-node-mississippi_3.0.0-1_all.deb ...
Unpacking node-mississippi (3.0.0-1) ...
Selecting previously unselected package node-mkdirp.
Preparing to unpack .../179-node-mkdirp_0.5.1-1_all.deb ...
Unpacking node-mkdirp (0.5.1-1) ...
Selecting previously unselected package node-run-queue.
Preparing to unpack .../180-node-run-queue_1.0.3-1_all.deb ...
Unpacking node-run-queue (1.0.3-1) ...
Selecting previously unselected package node-rimraf.
Preparing to unpack .../181-node-rimraf_2.6.2-1_all.deb ...
Unpacking node-rimraf (2.6.2-1) ...
Selecting previously unselected package node-imurmurhash.
Preparing to unpack .../182-node-imurmurhash_0.1.4-1_all.deb ...
Unpacking node-imurmurhash (0.1.4-1) ...
Selecting previously unselected package node-iferr.
Preparing to unpack .../183-node-iferr_1.0.2-1_all.deb ...
Unpacking node-iferr (1.0.2-1) ...
Selecting previously unselected package node-fs-write-stream-atomic.
Preparing to unpack .../184-node-fs-write-stream-atomic_1.0.10-4_all.deb ...
Unpacking node-fs-write-stream-atomic (1.0.10-4) ...
Selecting previously unselected package node-copy-concurrently.
Preparing to unpack .../185-node-copy-concurrently_1.0.5-4_all.deb ...
Unpacking node-copy-concurrently (1.0.5-4) ...
Selecting previously unselected package node-move-concurrently.
Preparing to unpack .../186-node-move-concurrently_1.0.1-2_all.deb ...
Unpacking node-move-concurrently (1.0.1-2) ...
Selecting previously unselected package node-promise-inflight.
Preparing to unpack .../187-node-promise-inflight_1.0.1-1_all.deb ...
Unpacking node-promise-inflight (1.0.1-1) ...
Selecting previously unselected package node-ssri.
Preparing to unpack .../188-node-ssri_5.2.4-2_all.deb ...
Unpacking node-ssri (5.2.4-2) ...
Selecting previously unselected package node-unique-filename.
Preparing to unpack .../189-node-unique-filename_1.1.0+ds-2_all.deb ...
Unpacking node-unique-filename (1.1.0+ds-2) ...
Selecting previously unselected package node-y18n.
Preparing to unpack .../190-node-y18n_3.2.1-2+deb10u1_all.deb ...
Unpacking node-y18n (3.2.1-2+deb10u1) ...
Selecting previously unselected package node-cacache.
Preparing to unpack .../191-node-cacache_11.3.2-2_all.deb ...
Unpacking node-cacache (11.3.2-2) ...
Selecting previously unselected package node-call-limit.
Preparing to unpack .../192-node-call-limit_1.1.0-1_all.deb ...
Unpacking node-call-limit (1.1.0-1) ...
Selecting previously unselected package node-caseless.
Preparing to unpack .../193-node-caseless_0.12.0-1_all.deb ...
Unpacking node-caseless (0.12.0-1) ...
Selecting previously unselected package node-wrap-ansi.
Preparing to unpack .../194-node-wrap-ansi_4.0.0-1_all.deb ...
Unpacking node-wrap-ansi (4.0.0-1) ...
Selecting previously unselected package node-cliui.
Preparing to unpack .../195-node-cliui_4.1.0-1_all.deb ...
Unpacking node-cliui (4.1.0-1) ...
Selecting previously unselected package node-delayed-stream.
Preparing to unpack .../196-node-delayed-stream_0.0.5-1_all.deb ...
Unpacking node-delayed-stream (0.0.5-1) ...
Selecting previously unselected package node-combined-stream.
Preparing to unpack .../197-node-combined-stream_1.0.7-1_all.deb ...
Unpacking node-combined-stream (1.0.7-1) ...
Selecting previously unselected package node-proto-list.
Preparing to unpack .../198-node-proto-list_1.2.4-1_all.deb ...
Unpacking node-proto-list (1.2.4-1) ...
Selecting previously unselected package node-ini.
Preparing to unpack .../199-node-ini_1.3.5-1+deb10u1_all.deb ...
Unpacking node-ini (1.3.5-1+deb10u1) ...
Selecting previously unselected package node-config-chain.
Preparing to unpack .../200-node-config-chain_1.1.11-1_all.deb ...
Unpacking node-config-chain (1.1.11-1) ...
Selecting previously unselected package node-console-control-strings.
Preparing to unpack .../201-node-console-control-strings_1.1.0-1_all.deb ...
Unpacking node-console-control-strings (1.1.0-1) ...
Selecting previously unselected package node-dashdash.
Preparing to unpack .../202-node-dashdash_1.14.1-2_all.deb ...
Unpacking node-dashdash (1.14.1-2) ...
Selecting previously unselected package node-decamelize.
Preparing to unpack .../203-node-decamelize_1.2.0-1_all.deb ...
Unpacking node-decamelize (1.2.0-1) ...
Selecting previously unselected package node-mimic-response.
Preparing to unpack .../204-node-mimic-response_1.0.0-1_all.deb ...
Unpacking node-mimic-response (1.0.0-1) ...
Selecting previously unselected package node-decompress-response.
Preparing to unpack .../205-node-decompress-response_3.3.0-1_all.deb ...
Unpacking node-decompress-response (3.3.0-1) ...
Selecting previously unselected package node-deep-extend.
Preparing to unpack .../206-node-deep-extend_0.4.1-2_all.deb ...
Unpacking node-deep-extend (0.4.1-2) ...
Selecting previously unselected package node-detect-indent.
Preparing to unpack .../207-node-detect-indent_5.0.0-1_all.deb ...
Unpacking node-detect-indent (5.0.0-1) ...
Selecting previously unselected package node-detect-newline.
Preparing to unpack .../208-node-detect-newline_2.1.0-1_all.deb ...
Unpacking node-detect-newline (2.1.0-1) ...
Selecting previously unselected package node-duplexer3.
Preparing to unpack .../209-node-duplexer3_0.1.4-4_all.deb ...
Unpacking node-duplexer3 (0.1.4-4) ...
Selecting previously unselected package node-jsbn.
Preparing to unpack .../210-node-jsbn_1.1.0-1_all.deb ...
Unpacking node-jsbn (1.1.0-1) ...
Selecting previously unselected package node-ecc-jsbn.
Preparing to unpack .../211-node-ecc-jsbn_0.1.1-1_all.deb ...
Unpacking node-ecc-jsbn (0.1.1-1) ...
Selecting previously unselected package node-editor.
Preparing to unpack .../212-node-editor_1.0.0-1_all.deb ...
Unpacking node-editor (1.0.0-1) ...
Selecting previously unselected package node-iconv-lite.
Preparing to unpack .../213-node-iconv-lite_0.4.13-2_all.deb ...
Unpacking node-iconv-lite (0.4.13-2) ...
Selecting previously unselected package node-encoding.
Preparing to unpack .../214-node-encoding_0.1.12-2_all.deb ...
Unpacking node-encoding (0.1.12-2) ...
Selecting previously unselected package node-prr.
Preparing to unpack .../215-node-prr_1.0.1-1_all.deb ...
Unpacking node-prr (1.0.1-1) ...
Selecting previously unselected package node-errno.
Preparing to unpack .../216-node-errno_0.1.4-1_all.deb ...
Unpacking node-errno (0.1.4-1) ...
Selecting previously unselected package node-extend.
Preparing to unpack .../217-node-extend_3.0.2-1_all.deb ...
Unpacking node-extend (3.0.2-1) ...
Selecting previously unselected package node-extsprintf.
Preparing to unpack .../218-node-extsprintf_1.3.0-1_all.deb ...
Unpacking node-extsprintf (1.3.0-1) ...
Selecting previously unselected package node-p-limit.
Preparing to unpack .../219-node-p-limit_1.1.0-1_all.deb ...
Unpacking node-p-limit (1.1.0-1) ...
Selecting previously unselected package node-p-locate.
Preparing to unpack .../220-node-p-locate_2.0.0-1_all.deb ...
Unpacking node-p-locate (2.0.0-1) ...
Selecting previously unselected package node-path-exists.
Preparing to unpack .../221-node-path-exists_3.0.0-1_all.deb ...
Unpacking node-path-exists (3.0.0-1) ...
Selecting previously unselected package node-locate-path.
Preparing to unpack .../222-node-locate-path_2.0.0-1_all.deb ...
Unpacking node-locate-path (2.0.0-1) ...
Selecting previously unselected package node-find-up.
Preparing to unpack .../223-node-find-up_2.1.0-1_all.deb ...
Unpacking node-find-up (2.1.0-1) ...
Selecting previously unselected package node-forever-agent.
Preparing to unpack .../224-node-forever-agent_0.6.1-1_all.deb ...
Unpacking node-forever-agent (0.6.1-1) ...
Selecting previously unselected package node-mime-types.
Preparing to unpack .../225-node-mime-types_2.1.21-1_all.deb ...
Unpacking node-mime-types (2.1.21-1) ...
Selecting previously unselected package node-form-data.
Preparing to unpack .../226-node-form-data_2.3.2-2_all.deb ...
Unpacking node-form-data (2.3.2-2) ...
Selecting previously unselected package node-path-is-inside.
Preparing to unpack .../227-node-path-is-inside_1.0.2-1_all.deb ...
Unpacking node-path-is-inside (1.0.2-1) ...
Selecting previously unselected package node-fs-vacuum.
Preparing to unpack .../228-node-fs-vacuum_1.2.10-2_all.deb ...
Unpacking node-fs-vacuum (1.2.10-2) ...
Selecting previously unselected package node-object-assign.
Preparing to unpack .../229-node-object-assign_4.1.1-2_all.deb ...
Unpacking node-object-assign (4.1.1-2) ...
Selecting previously unselected package node-has-unicode.
Preparing to unpack .../230-node-has-unicode_2.0.1-2_all.deb ...
Unpacking node-has-unicode (2.0.1-2) ...
Selecting previously unselected package node-wide-align.
Preparing to unpack .../231-node-wide-align_1.1.0-1_all.deb ...
Unpacking node-wide-align (1.1.0-1) ...
Selecting previously unselected package node-gauge.
Preparing to unpack .../232-node-gauge_2.7.4-1_all.deb ...
Unpacking node-gauge (2.7.4-1) ...
Selecting previously unselected package node-get-caller-file.
Preparing to unpack .../233-node-get-caller-file_1.0.2-1_all.deb ...
Unpacking node-get-caller-file (1.0.2-1) ...
Selecting previously unselected package node-getpass.
Preparing to unpack .../234-node-getpass_0.1.7-1_all.deb ...
Unpacking node-getpass (0.1.7-1) ...
Selecting previously unselected package node-is-retry-allowed.
Preparing to unpack .../235-node-is-retry-allowed_1.1.0-1_all.deb ...
Unpacking node-is-retry-allowed (1.1.0-1) ...
Selecting previously unselected package node-p-cancelable.
Preparing to unpack .../236-node-p-cancelable_0.3.0-1_all.deb ...
Unpacking node-p-cancelable (0.3.0-1) ...
Selecting previously unselected package node-p-timeout.
Preparing to unpack .../237-node-p-timeout_1.2.0-1_all.deb ...
Unpacking node-p-timeout (1.2.0-1) ...
Selecting previously unselected package node-is-plain-obj.
Preparing to unpack .../238-node-is-plain-obj_1.1.0-1_all.deb ...
Unpacking node-is-plain-obj (1.1.0-1) ...
Selecting previously unselected package node-url-to-options.
Preparing to unpack .../239-node-url-to-options_1.0.1-1_all.deb ...
Unpacking node-url-to-options (1.0.1-1) ...
Selecting previously unselected package node-timed-out.
Preparing to unpack .../240-node-timed-out_4.0.1-4_all.deb ...
Unpacking node-timed-out (4.0.1-4) ...
Selecting previously unselected package node-lowercase-keys.
Preparing to unpack .../241-node-lowercase-keys_1.0.0-2_all.deb ...
Unpacking node-lowercase-keys (1.0.0-2) ...
Selecting previously unselected package node-is-object.
Preparing to unpack .../242-node-is-object_1.0.1-1_all.deb ...
Unpacking node-is-object (1.0.1-1) ...
Selecting previously unselected package node-has-symbol-support-x.
Preparing to unpack .../243-node-has-symbol-support-x_1.4.1+dfsg-1_all.deb ...
Unpacking node-has-symbol-support-x (1.4.1+dfsg-1) ...
Selecting previously unselected package node-has-to-string-tag-x.
Preparing to unpack .../244-node-has-to-string-tag-x_1.4.1+dfsg-1_all.deb ...
Unpacking node-has-to-string-tag-x (1.4.1+dfsg-1) ...
Selecting previously unselected package node-isurl.
Preparing to unpack .../245-node-isurl_1.0.0-1_all.deb ...
Unpacking node-isurl (1.0.0-1) ...
Selecting previously unselected package node-prepend-http.
Preparing to unpack .../246-node-prepend-http_2.0.0-1_all.deb ...
Unpacking node-prepend-http (2.0.0-1) ...
Selecting previously unselected package node-url-parse-lax.
Preparing to unpack .../247-node-url-parse-lax_1.0.0-1_all.deb ...
Unpacking node-url-parse-lax (1.0.0-1) ...
Selecting previously unselected package node-got.
Preparing to unpack .../248-node-got_7.1.0-1_all.deb ...
Unpacking node-got (7.1.0-1) ...
Selecting previously unselected package node-nopt.
Preparing to unpack .../249-node-nopt_3.0.6-3_all.deb ...
Unpacking node-nopt (3.0.6-3) ...
Selecting previously unselected package node-set-blocking.
Preparing to unpack .../250-node-set-blocking_2.0.0-1_all.deb ...
Unpacking node-set-blocking (2.0.0-1) ...
Selecting previously unselected package node-npmlog.
Preparing to unpack .../251-node-npmlog_4.1.2-1_all.deb ...
Unpacking node-npmlog (4.1.2-1) ...
Selecting previously unselected package node-osenv.
Preparing to unpack .../252-node-osenv_0.1.5-1_all.deb ...
Unpacking node-osenv (0.1.5-1) ...
Selecting previously unselected package node-har-schema.
Preparing to unpack .../253-node-har-schema_2.0.0-1_all.deb ...
Unpacking node-har-schema (2.0.0-1) ...
Selecting previously unselected package node-har-validator.
Preparing to unpack .../254-node-har-validator_5.1.0-1_all.deb ...
Unpacking node-har-validator (5.1.0-1) ...
Selecting previously unselected package node-json-schema.
Preparing to unpack .../255-node-json-schema_0.2.3-1_all.deb ...
Unpacking node-json-schema (0.2.3-1) ...
Selecting previously unselected package node-verror.
Preparing to unpack .../256-node-verror_1.10.0-1_all.deb ...
Unpacking node-verror (1.10.0-1) ...
Selecting previously unselected package node-jsprim.
Preparing to unpack .../257-node-jsprim_1.4.0-1_all.deb ...
Unpacking node-jsprim (1.4.0-1) ...
Selecting previously unselected package node-sshpk.
Preparing to unpack .../258-node-sshpk_1.13.1+dfsg-2_all.deb ...
Unpacking node-sshpk (1.13.1+dfsg-2) ...
Selecting previously unselected package node-http-signature.
Preparing to unpack .../259-node-http-signature_1.2.0-1_all.deb ...
Unpacking node-http-signature (1.2.0-1) ...
Selecting previously unselected package node-is-typedarray.
Preparing to unpack .../260-node-is-typedarray_1.0.0-2_all.deb ...
Unpacking node-is-typedarray (1.0.0-2) ...
Selecting previously unselected package node-isstream.
Preparing to unpack .../261-node-isstream_0.1.2+dfsg-1_all.deb ...
Unpacking node-isstream (0.1.2+dfsg-1) ...
Selecting previously unselected package node-json-stringify-safe.
Preparing to unpack .../262-node-json-stringify-safe_5.0.1-1_all.deb ...
Unpacking node-json-stringify-safe (5.0.1-1) ...
Selecting previously unselected package node-oauth-sign.
Preparing to unpack .../263-node-oauth-sign_0.9.0-1_all.deb ...
Unpacking node-oauth-sign (0.9.0-1) ...
Selecting previously unselected package node-performance-now.
Preparing to unpack .../264-node-performance-now_2.1.0+debian-1_all.deb ...
Unpacking node-performance-now (2.1.0+debian-1) ...
Selecting previously unselected package node-qs.
Preparing to unpack .../265-node-qs_6.5.2-1_all.deb ...
Unpacking node-qs (6.5.2-1) ...
Selecting previously unselected package node-punycode.
Preparing to unpack .../266-node-punycode_2.1.1-2_all.deb ...
Unpacking node-punycode (2.1.1-2) ...
Selecting previously unselected package node-tough-cookie.
Preparing to unpack .../267-node-tough-cookie_2.3.4+dfsg-1_all.deb ...
Unpacking node-tough-cookie (2.3.4+dfsg-1) ...
Selecting previously unselected package node-tunnel-agent.
Preparing to unpack .../268-node-tunnel-agent_0.6.1-1_all.deb ...
Unpacking node-tunnel-agent (0.6.1-1) ...
Selecting previously unselected package node-uuid.
Preparing to unpack .../269-node-uuid_3.3.2-2_all.deb ...
Unpacking node-uuid (3.3.2-2) ...
Selecting previously unselected package node-node-uuid.
Preparing to unpack .../270-node-node-uuid_3.3.2-2_all.deb ...
Unpacking node-node-uuid (3.3.2-2) ...
Selecting previously unselected package node-request.
Preparing to unpack .../271-node-request_2.88.1-2_all.deb ...
Unpacking node-request (2.88.1-2) ...
Selecting previously unselected package node-semver.
Preparing to unpack .../272-node-semver_5.5.1-1_all.deb ...
Unpacking node-semver (5.5.1-1) ...
Selecting previously unselected package node-tar.
Preparing to unpack .../273-node-tar_4.4.6+ds1-3_all.deb ...
Unpacking node-tar (4.4.6+ds1-3) ...
Selecting previously unselected package node-gyp.
Preparing to unpack .../274-node-gyp_3.8.0-6_all.deb ...
Unpacking node-gyp (3.8.0-6) ...
Selecting previously unselected package node-hosted-git-info.
Preparing to unpack .../275-node-hosted-git-info_2.7.1-1+deb10u1_all.deb ...
Unpacking node-hosted-git-info (2.7.1-1+deb10u1) ...
Selecting previously unselected package node-import-lazy.
Preparing to unpack .../276-node-import-lazy_3.0.0.REALLY.2.1.0-1_all.deb ...
Unpacking node-import-lazy (3.0.0.REALLY.2.1.0-1) ...
Selecting previously unselected package node-invert-kv.
Preparing to unpack .../277-node-invert-kv_1.0.0-1_all.deb ...
Unpacking node-invert-kv (1.0.0-1) ...
Selecting previously unselected package node-is-builtin-module.
Preparing to unpack .../278-node-is-builtin-module_2.0.0-1_all.deb ...
Unpacking node-is-builtin-module (2.0.0-1) ...
Selecting previously unselected package node-is-npm.
Preparing to unpack .../279-node-is-npm_1.0.0-1_all.deb ...
Unpacking node-is-npm (1.0.0-1) ...
Selecting previously unselected package node-json-parse-better-errors.
Preparing to unpack .../280-node-json-parse-better-errors_1.0.2-2_all.deb ...
Unpacking node-json-parse-better-errors (1.0.2-2) ...
Selecting previously unselected package node-jsonparse.
Preparing to unpack .../281-node-jsonparse_1.3.1-6_all.deb ...
Unpacking node-jsonparse (1.3.1-6) ...
Selecting previously unselected package node-through.
Preparing to unpack .../282-node-through_2.3.8-1_all.deb ...
Unpacking node-through (2.3.8-1) ...
Selecting previously unselected package node-jsonstream.
Preparing to unpack .../283-node-jsonstream_1.3.2-1_all.deb ...
Unpacking node-jsonstream (1.3.2-1) ...
Selecting previously unselected package node-minimist.
Preparing to unpack .../284-node-minimist_1.2.0-1+deb10u1_all.deb ...
Unpacking node-minimist (1.2.0-1+deb10u1) ...
Selecting previously unselected package node-strip-json-comments.
Preparing to unpack .../285-node-strip-json-comments_2.0.1-2_all.deb ...
Unpacking node-strip-json-comments (2.0.1-2) ...
Selecting previously unselected package node-rc.
Preparing to unpack .../286-node-rc_1.1.6-2_all.deb ...
Unpacking node-rc (1.1.6-2) ...
Selecting previously unselected package node-registry-url.
Preparing to unpack .../287-node-registry-url_3.1.0-1_all.deb ...
Unpacking node-registry-url (3.1.0-1) ...
Selecting previously unselected package node-registry-auth-token.
Preparing to unpack .../288-node-registry-auth-token_3.3.1-1_all.deb ...
Unpacking node-registry-auth-token (3.3.1-1) ...
Selecting previously unselected package node-package-json.
Preparing to unpack .../289-node-package-json_4.0.1-1_all.deb ...
Unpacking node-package-json (4.0.1-1) ...
Selecting previously unselected package node-latest-version.
Preparing to unpack .../290-node-latest-version_3.1.0-1_all.deb ...
Unpacking node-latest-version (3.1.0-1) ...
Selecting previously unselected package node-lazy-property.
Preparing to unpack .../291-node-lazy-property_1.0.0-3_all.deb ...
Unpacking node-lazy-property (1.0.0-3) ...
Selecting previously unselected package node-lcid.
Preparing to unpack .../292-node-lcid_1.0.0-1_all.deb ...
Unpacking node-lcid (1.0.0-1) ...
Selecting previously unselected package node-validate-npm-package-name.
Preparing to unpack .../293-node-validate-npm-package-name_3.0.0-1_all.deb ...
Unpacking node-validate-npm-package-name (3.0.0-1) ...
Selecting previously unselected package node-npm-package-arg.
Preparing to unpack .../294-node-npm-package-arg_6.0.0-2_all.deb ...
Unpacking node-npm-package-arg (6.0.0-2) ...
Selecting previously unselected package node-require-directory.
Preparing to unpack .../295-node-require-directory_2.1.1-1_all.deb ...
Unpacking node-require-directory (2.1.1-1) ...
Selecting previously unselected package node-require-main-filename.
Preparing to unpack .../296-node-require-main-filename_1.0.1-1_all.deb ...
Unpacking node-require-main-filename (1.0.1-1) ...
Selecting previously unselected package node-which-module.
Preparing to unpack .../297-node-which-module_2.0.0-1_all.deb ...
Unpacking node-which-module (2.0.0-1) ...
Selecting previously unselected package node-mimic-fn.
Preparing to unpack .../298-node-mimic-fn_1.1.0-1_all.deb ...
Unpacking node-mimic-fn (1.1.0-1) ...
Selecting previously unselected package node-mem.
Preparing to unpack .../299-node-mem_1.1.0-1_all.deb ...
Unpacking node-mem (1.1.0-1) ...
Selecting previously unselected package node-os-locale.
Preparing to unpack .../300-node-os-locale_2.0.0-1_all.deb ...
Unpacking node-os-locale (2.0.0-1) ...
Selecting previously unselected package node-yargs-parser.
Preparing to unpack .../301-node-yargs-parser_11.1.1-1+deb10u1_all.deb ...
Unpacking node-yargs-parser (11.1.1-1+deb10u1) ...
Selecting previously unselected package node-yargs.
Preparing to unpack .../302-node-yargs_10.0.3-2_all.deb ...
Unpacking node-yargs (10.0.3-2) ...
Selecting previously unselected package node-libnpx.
Preparing to unpack .../303-node-libnpx_10.2.0+repack-1_all.deb ...
Unpacking node-libnpx (10.2.0+repack-1) ...
Selecting previously unselected package node-lockfile.
Preparing to unpack .../304-node-lockfile_1.0.4-1_all.deb ...
Unpacking node-lockfile (1.0.4-1) ...
Selecting previously unselected package node-mute-stream.
Preparing to unpack .../305-node-mute-stream_0.0.8-1_all.deb ...
Unpacking node-mute-stream (0.0.8-1) ...
Selecting previously unselected package node-spdx-license-ids.
Preparing to unpack .../306-node-spdx-license-ids_1.2.2-1_all.deb ...
Unpacking node-spdx-license-ids (1.2.2-1) ...
Selecting previously unselected package node-spdx-correct.
Preparing to unpack .../307-node-spdx-correct_1.0.2-1_all.deb ...
Unpacking node-spdx-correct (1.0.2-1) ...
Selecting previously unselected package node-spdx-expression-parse.
Preparing to unpack .../308-node-spdx-expression-parse_1.0.4-1_all.deb ...
Unpacking node-spdx-expression-parse (1.0.4-1) ...
Selecting previously unselected package node-validate-npm-package-license.
Preparing to unpack .../309-node-validate-npm-package-license_3.0.1-1_all.deb ...
Unpacking node-validate-npm-package-license (3.0.1-1) ...
Selecting previously unselected package node-normalize-package-data.
Preparing to unpack .../310-node-normalize-package-data_2.4.0-1_all.deb ...
Unpacking node-normalize-package-data (2.4.0-1) ...
Selecting previously unselected package node-opener.
Preparing to unpack .../311-node-opener_1.4.3-1_all.deb ...
Unpacking node-opener (1.4.3-1) ...
Selecting previously unselected package node-read.
Preparing to unpack .../312-node-read_1.0.7-1_all.deb ...
Unpacking node-read (1.0.7-1) ...
Selecting previously unselected package node-promzard.
Preparing to unpack .../313-node-promzard_0.3.0-1_all.deb ...
Unpacking node-promzard (0.3.0-1) ...
Selecting previously unselected package node-qw.
Preparing to unpack .../314-node-qw_1.0.1-1_all.deb ...
Unpacking node-qw (1.0.1-1) ...
Selecting previously unselected package node-slash.
Preparing to unpack .../315-node-slash_1.0.0-1_all.deb ...
Unpacking node-slash (1.0.0-1) ...
Selecting previously unselected package node-read-package-json.
Preparing to unpack .../316-node-read-package-json_2.0.13-1_all.deb ...
Unpacking node-read-package-json (2.0.13-1) ...
Selecting previously unselected package node-resolve-from.
Preparing to unpack .../317-node-resolve-from_4.0.0-1_all.deb ...
Unpacking node-resolve-from (4.0.0-1) ...
Selecting previously unselected package node-retry.
Preparing to unpack .../318-node-retry_0.10.1-1_all.deb ...
Unpacking node-retry (0.10.1-1) ...
Selecting previously unselected package node-semver-diff.
Preparing to unpack .../319-node-semver-diff_2.1.0-2_all.deb ...
Unpacking node-semver-diff (2.1.0-2) ...
Selecting previously unselected package node-sha.
Preparing to unpack .../320-node-sha_2.0.1-1_all.deb ...
Unpacking node-sha (2.0.1-1) ...
Selecting previously unselected package node-slide.
Preparing to unpack .../321-node-slide_1.1.6-2_all.deb ...
Unpacking node-slide (1.1.6-2) ...
Selecting previously unselected package node-sorted-object.
Preparing to unpack .../322-node-sorted-object_2.0.1-1_all.deb ...
Unpacking node-sorted-object (2.0.1-1) ...
Selecting previously unselected package node-stream-iterate.
Preparing to unpack .../323-node-stream-iterate_1.2.0-4_all.deb ...
Unpacking node-stream-iterate (1.2.0-4) ...
Selecting previously unselected package node-text-table.
Preparing to unpack .../324-node-text-table_0.2.0-2_all.deb ...
Unpacking node-text-table (0.2.0-2) ...
Selecting previously unselected package node-uid-number.
Preparing to unpack .../325-node-uid-number_0.0.6-1_all.deb ...
Unpacking node-uid-number (0.0.6-1) ...
Selecting previously unselected package node-unpipe.
Preparing to unpack .../326-node-unpipe_1.0.0-1_all.deb ...
Unpacking node-unpipe (1.0.0-1) ...
Selecting previously unselected package node-write-file-atomic.
Preparing to unpack .../327-node-write-file-atomic_2.3.0-1_all.deb ...
Unpacking node-write-file-atomic (2.3.0-1) ...
Selecting previously unselected package node-xdg-basedir.
Preparing to unpack .../328-node-xdg-basedir_3.0.0-1_all.deb ...
Unpacking node-xdg-basedir (3.0.0-1) ...
Selecting previously unselected package nodejs-doc.
Preparing to unpack .../329-nodejs-doc_10.24.0~dfsg-1~deb10u1_all.deb ...
Unpacking nodejs-doc (10.24.0~dfsg-1~deb10u1) ...
Selecting previously unselected package npm.
Preparing to unpack .../330-npm_5.8.0+ds6-4+deb10u2_all.deb ...
Unpacking npm (5.8.0+ds6-4+deb10u2) ...
Setting up perl-modules-5.28 (5.28.1-6+deb10u1) ...
Setting up libksba8:amd64 (1.3.5-2) ...
Setting up javascript-common (11) ...
Setting up lsb-base (10.2019051400) ...
Setting up libkeyutils1:amd64 (1.6-6) ...
Setting up mime-support (3.62) ...
Setting up libjs-inherits (2.0.3-1) ...
Setting up libmagic-mgc (1:5.35-4+deb10u2) ...
Setting up manpages (4.16-2) ...
Setting up libbrotli1:amd64 (1.0.7-2+deb10u1) ...
Setting up libsasl2-modules:amd64 (2.1.27+dfsg-1+deb10u1) ...
Setting up binutils-common:amd64 (2.31.1-16) ...
Setting up libmagic1:amd64 (1:5.35-4+deb10u2) ...
Setting up linux-libc-dev:amd64 (4.19.194-3) ...
Setting up libnpth0:amd64 (1.6-1) ...
Setting up krb5-locales (1.17-3+deb10u2) ...
Setting up libc-ares2:amd64 (1.14.0-1+deb10u1) ...
Setting up file (1:5.35-4+deb10u2) ...
Setting up libassuan0:amd64 (2.5.2-1) ...
Setting up libgomp1:amd64 (8.3.0-6) ...
Setting up bzip2 (1.0.6-9.2~deb10u1) ...
Setting up libldap-common (2.4.47+dfsg-3+deb10u6) ...
Setting up libicu63:amd64 (63.1-6+deb10u1) ...
Setting up libfakeroot:amd64 (1.23-1) ...
Setting up libkrb5support0:amd64 (1.17-3+deb10u2) ...
Setting up libsasl2-modules-db:amd64 (2.1.27+dfsg-1+deb10u1) ...
Setting up libpython2.7-stdlib:amd64 (2.7.16-2+deb10u1) ...
Setting up fakeroot (1.23-1) ...
update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/fakeroot.1.gz because associated file /usr/share/man/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/faked.1.gz because associated file /usr/share/man/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/es/man1/fakeroot.1.gz because associated file /usr/share/man/es/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/es/man1/faked.1.gz because associated file /usr/share/man/es/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/fr/man1/fakeroot.1.gz because associated file /usr/share/man/fr/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/fr/man1/faked.1.gz because associated file /usr/share/man/fr/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/sv/man1/fakeroot.1.gz because associated file /usr/share/man/sv/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/sv/man1/faked.1.gz because associated file /usr/share/man/sv/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
Setting up libasan5:amd64 (8.3.0-6) ...
Setting up libuv1:amd64 (1.24.1-1+deb10u1) ...
Setting up make (4.2.1-1.2) ...
Setting up libmpfr6:amd64 (4.0.2-1) ...
Setting up gnupg-l10n (2.2.12-1+deb10u1) ...
Setting up xz-utils (5.2.4-1) ...
update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist
update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist
Setting up libquadmath0:amd64 (8.3.0-6) ...
Setting up libssl-dev:amd64 (1.1.1d-0+deb10u7) ...
Setting up libmpc3:amd64 (1.1.0-1) ...
Setting up libatomic1:amd64 (8.3.0-6) ...
Setting up patch (2.7.6-3+deb10u1) ...
Setting up libgdbm-compat4:amd64 (1.18.1-4) ...
Setting up libk5crypto3:amd64 (1.17-3+deb10u2) ...
Setting up libsasl2-2:amd64 (2.1.27+dfsg-1+deb10u1) ...
Setting up libperl5.28:amd64 (5.28.1-6+deb10u1) ...
Setting up nodejs-doc (10.24.0~dfsg-1~deb10u1) ...
Setting up libmpx2:amd64 (8.3.0-6) ...
Setting up libubsan1:amd64 (8.3.0-6) ...
Setting up libisl19:amd64 (0.20-2) ...
Setting up gpgconf (2.2.12-1+deb10u1) ...
Setting up libkrb5-3:amd64 (1.17-3+deb10u2) ...
Setting up libbinutils:amd64 (2.31.1-16) ...
Setting up cpp-8 (8.3.0-6) ...
Setting up libc-dev-bin (2.28-10) ...
Setting up libcc1-0:amd64 (8.3.0-6) ...
Setting up liblocale-gettext-perl (1.07-3+b4) ...
Setting up gpg (2.2.12-1+deb10u1) ...
Setting up liblsan0:amd64 (8.3.0-6) ...
Setting up libitm1:amd64 (8.3.0-6) ...
Setting up gnupg-utils (2.2.12-1+deb10u1) ...
Setting up libjs-is-typedarray (1.0.0-2) ...
Setting up binutils-x86-64-linux-gnu (2.31.1-16) ...
Setting up libtsan0:amd64 (8.3.0-6) ...
Setting up pinentry-curses (1.1.0-2) ...
Setting up libuv1-dev:amd64 (1.24.1-1+deb10u1) ...
Setting up manpages-dev (4.16-2) ...
Setting up gpg-agent (2.2.12-1+deb10u1) ...
Setting up python2.7 (2.7.16-2+deb10u1) ...
Setting up libpython2-stdlib:amd64 (2.7.16-1) ...
Setting up gpgsm (2.2.12-1+deb10u1) ...
Setting up libldap-2.4-2:amd64 (2.4.47+dfsg-3+deb10u6) ...
Setting up binutils (2.31.1-16) ...
Setting up python2 (2.7.16-1) ...
Setting up dirmngr (2.2.12-1+deb10u1) ...
Setting up libpython-stdlib:amd64 (2.7.16-1) ...
Setting up perl (5.28.1-6+deb10u1) ...
Setting up libnode64:amd64 (10.24.0~dfsg-1~deb10u1) ...
Setting up libgssapi-krb5-2:amd64 (1.17-3+deb10u2) ...
Setting up libdpkg-perl (1.19.7) ...
Setting up libgcc-8-dev:amd64 (8.3.0-6) ...
Setting up gpg-wks-server (2.2.12-1+deb10u1) ...
Setting up cpp (4:8.3.0-1) ...
Setting up libc6-dev:amd64 (2.28-10) ...
Setting up python (2.7.16-1) ...
Setting up libstdc++-8-dev:amd64 (8.3.0-6) ...
Setting up gcc-8 (8.3.0-6) ...
Setting up gpg-wks-client (2.2.12-1+deb10u1) ...
Setting up libnode-dev:amd64 (10.24.0~dfsg-1~deb10u1) ...
Setting up libfile-fcntllock-perl (0.22-3+b5) ...
Setting up libalgorithm-diff-perl (1.19.03-2) ...
Setting up python-pkg-resources (40.8.0-1) ...
Setting up libpq5:amd64 (11.12-0+deb10u1) ...
Setting up libpq-dev (11.12-0+deb10u1) ...
Setting up nodejs (10.24.0~dfsg-1~deb10u1) ...
update-alternatives: using /usr/bin/nodejs to provide /usr/bin/js (js) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/js.1.gz because associated file /usr/share/man/man1/nodejs.1.gz (of link group js) doesn't exist
Setting up node-minimist (1.2.0-1+deb10u1) ...
Setting up node-aws4 (1.8.0-1) ...
Setting up node-prepend-http (2.0.0-1) ...
Setting up node-typedarray (0.0.6-1) ...
Setting up gcc (4:8.3.0-1) ...
Setting up dpkg-dev (1.19.7) ...
Setting up node-clone (2.1.2-1) ...
Setting up node-iferr (1.0.2-1) ...
Setting up node-chownr (1.1.1-1) ...
Setting up node-has-flag (2.0.0-1) ...
Setting up node-inherits (2.0.3-1) ...
Setting up node-builtin-modules (3.0.0-1) ...
Setting up node-path-is-absolute (1.0.0-1) ...
Setting up node-ini (1.3.5-1+deb10u1) ...
Setting up node-iconv-lite (0.4.13-2) ...
Setting up node-is-npm (1.0.0-1) ...
Setting up node-safe-buffer (5.1.2-1) ...
Setting up node-promise-inflight (1.0.1-1) ...
Setting up node-json-stringify-safe (5.0.1-1) ...
Setting up node-json-parse-better-errors (1.0.2-2) ...
Setting up node-y18n (3.2.1-2+deb10u1) ...
Setting up node-detect-newline (2.1.0-1) ...
Setting up node-shebang-regex (2.0.0-1) ...
Setting up node-har-schema (2.0.0-1) ...
Setting up node-mime-types (2.1.21-1) ...
Setting up node-performance-now (2.1.0+debian-1) ...
Setting up node-resolve-from (4.0.0-1) ...
Setting up node-balanced-match (0.4.2-1) ...
Setting up node-ansi (0.3.0-3) ...
Setting up node-is-object (1.0.1-1) ...
Setting up node-is-stream (1.1.0-1) ...
Setting up node-deep-extend (0.4.1-2) ...
Setting up node-p-finally (1.0.0-2) ...
Setting up node-get-stream (3.0.0-1) ...
Setting up node-set-blocking (2.0.0-1) ...
Setting up node-prr (1.0.1-1) ...
Setting up node-tunnel-agent (0.6.1-1) ...
Setting up node-uid-number (0.0.6-1) ...
Setting up node-signal-exit (3.0.2-1) ...
Setting up node-spdx-expression-parse (1.0.4-1) ...
Setting up node-cyclist (1.0.1-2) ...
Setting up node-wrappy (1.0.2-1) ...
Setting up node-text-table (0.2.0-2) ...
Setting up node-asynckit (0.4.0-2) ...
Setting up node-proto-list (1.2.4-1) ...
Setting up node-require-directory (2.1.1-1) ...
Setting up node-punycode (2.1.1-2) ...
Setting up node-concat-stream (1.6.2-1) ...
Setting up node-defaults (1.0.3-1) ...
Setting up node-is-typedarray (1.0.0-2) ...
Setting up node-mute-stream (0.0.8-1) ...
Setting up node-mimic-response (1.0.0-1) ...
Setting up g++-8 (8.3.0-6) ...
Setting up node-duplexer3 (0.1.4-4) ...
Setting up node-graceful-fs (4.1.11-1) ...
Setting up node-jsonify (0.0.0-1) ...
Setting up node-json-stable-stringify (1.0.1-1) ...
Setting up node-hosted-git-info (2.7.1-1+deb10u1) ...
Setting up node-aproba (1.2.0-1) ...
Setting up gnupg (2.2.12-1+deb10u1) ...
Setting up node-tough-cookie (2.3.4+dfsg-1) ...
Setting up node-mimic-fn (1.1.0-1) ...
Setting up node-spdx-license-ids (1.2.2-1) ...
Setting up node-string-decoder (1.2.0-1) ...
Setting up node-mkdirp (0.5.1-1) ...
Setting up node-run-queue (1.0.3-1) ...
Setting up node-call-limit (1.1.0-1) ...
Setting up node-core-util-is (1.0.2-1) ...
Setting up node-json-schema (0.2.3-1) ...
Setting up node-is-builtin-module (2.0.0-1) ...
Setting up node-cli-boxes (1.0.0-1) ...
Setting up node-opener (1.4.3-1) ...
Setting up node-archy (1.0.0-2) ...
Setting up node-caseless (0.12.0-1) ...
Setting up node-imurmurhash (0.1.4-1) ...
Setting up node-xtend (4.0.1-2) ...
Setting up node-p-timeout (1.2.0-1) ...
Setting up node-encoding (0.1.12-2) ...
Setting up node-config-chain (1.1.11-1) ...
Setting up node-read (1.0.7-1) ...
Setting up node-detect-indent (5.0.0-1) ...
Setting up node-npm-run-path (2.0.2-2) ...
Setting up libalgorithm-diff-xs-perl (0.04-5+b1) ...
Setting up node-asn1 (0.2.3-1) ...
Setting up node-has-symbol-support-x (1.4.1+dfsg-1) ...
Setting up node-sorted-object (2.0.1-1) ...
Setting up node-isarray (2.0.4-1) ...
Setting up node-osenv (0.1.5-1) ...
Setting up node-is-plain-obj (1.1.0-1) ...
Setting up node-shebang-command (1.2.0-1) ...
Setting up libalgorithm-merge-perl (0.08-3) ...
Setting up node-lowercase-keys (1.0.0-2) ...
Setting up node-decompress-response (3.3.0-1) ...
Setting up node-strip-eof (1.0.0-2) ...
Setting up node-process-nextick-args (2.0.0-1) ...
Setting up node-semver (5.5.1-1) ...
Setting up node-has-unicode (2.0.1-2) ...
Setting up node-fs-write-stream-atomic (1.0.10-4) ...
Setting up gyp (0.1+20180428git4d467626-3) ...
Setting up node-forever-agent (0.6.1-1) ...
Setting up node-unpipe (1.0.0-1) ...
Setting up node-qs (6.5.2-1) ...
Setting up node-slide (1.1.6-2) ...
Setting up node-delayed-stream (0.0.5-1) ...
Setting up node-isstream (0.1.2+dfsg-1) ...
Setting up node-builtins (1.0.3-1) ...
Setting up node-stream-shift (1.0.0-1) ...
Setting up node-fs.realpath (1.0.0-1) ...
Setting up node-oauth-sign (0.9.0-1) ...
Setting up node-ssri (5.2.4-2) ...
Setting up node-url-to-options (1.0.1-1) ...
Setting up node-jsbn (1.1.0-1) ...
Setting up node-object-assign (4.1.1-2) ...
Setting up node-extsprintf (1.3.0-1) ...
Setting up node-abbrev (1.1.1-1) ...
Setting up node-mem (1.1.0-1) ...
Setting up node-path-is-inside (1.0.2-1) ...
Setting up node-supports-color (4.4.0-2) ...
Setting up node-invert-kv (1.0.0-1) ...
Setting up node-p-limit (1.1.0-1) ...
Setting up node-yallist (3.0.3-1) ...
Setting up node-p-cancelable (0.3.0-1) ...
Setting up node-ansi-regex (3.0.0-1) ...
Setting up node-timed-out (4.0.1-4) ...
Setting up node-strip-json-comments (2.0.1-2) ...
Setting up node-once (1.4.0-3) ...
Setting up node-write-file-atomic (2.3.0-1) ...
Setting up node-slash (1.0.0-1) ...
Setting up node-util-deprecate (1.0.2-1) ...
Setting up node-editor (1.0.0-1) ...
Setting up node-retry (0.10.1-1) ...
Setting up node-get-caller-file (1.0.2-1) ...
Setting up node-sha (2.0.1-1) ...
Setting up node-require-main-filename (1.0.1-1) ...
Setting up node-url-parse-lax (1.0.0-1) ...
Setting up node-concat-map (0.0.1-1) ...
Setting up node-import-lazy (3.0.0.REALLY.2.1.0-1) ...
Setting up node-is-retry-allowed (1.1.0-1) ...
Setting up node-assert-plus (1.0.0-1) ...
Setting up node-ansistyles (0.1.3-1) ...
Setting up node-delegates (1.0.0-1) ...
Setting up node-xdg-basedir (3.0.0-1) ...
Setting up node-co (4.6.0-1) ...
Setting up node-isexe (2.0.0-4) ...
Setting up node-jsonparse (1.3.1-6) ...
Setting up node-ajv (5.0.0-1) ...
Setting up node-path-exists (3.0.0-1) ...
Setting up node-qw (1.0.1-1) ...
Setting up node-tweetnacl (0.14.5+dfsg-3) ...
Setting up node-escape-string-regexp (1.0.5-1) ...
Setting up node-are-we-there-yet (1.1.4-1) ...
Setting up node-through (2.3.8-1) ...
Setting up node-errno (0.1.4-1) ...
Setting up node-p-locate (2.0.0-1) ...
Setting up node-which-module (2.0.0-1) ...
Setting up node-decamelize (1.2.0-1) ...
Setting up node-aws-sign2 (0.7.1-1) ...
Setting up node-color-name (1.1.3-1) ...
Setting up node-semver-diff (2.1.0-2) ...
Setting up node-bluebird (3.5.1+dfsg2-2) ...
Setting up node-console-control-strings (1.1.0-1) ...
Setting up node-camelcase (5.0.0-1) ...
Setting up node-uuid (3.3.2-2) ...
Setting up node-from2 (2.3.0-1) ...
Setting up node-extend (3.0.2-1) ...
Setting up node-jsonstream (1.3.2-1) ...
Setting up node-lazy-property (1.0.0-3) ...
Setting up node-yargs-parser (11.1.1-1+deb10u1) ...
Setting up node-dashdash (1.14.1-2) ...
Setting up node-validate-npm-package-name (3.0.0-1) ...
Setting up node-promzard (0.3.0-1) ...
Setting up node-wcwidth.js (1.0.0-1) ...
Setting up node-locate-path (2.0.0-1) ...
Setting up node-spdx-correct (1.0.2-1) ...
Setting up node-ecc-jsbn (0.1.1-1) ...
Setting up node-combined-stream (1.0.7-1) ...
Setting up node-unique-filename (1.1.0+ds-2) ...
Setting up node-brace-expansion (1.1.8-1) ...
Setting up node-form-data (2.3.2-2) ...
Setting up node-strip-ansi (4.0.0-1) ...
Setting up node-lockfile (1.0.4-1) ...
Setting up node-parallel-transform (1.1.0-2) ...
Setting up node-which (1.3.0-2) ...
Setting up node-lcid (1.0.0-1) ...
Setting up g++ (4:8.3.0-1) ...
update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
Setting up node-stream-iterate (1.2.0-4) ...
Setting up node-tar (4.4.6+ds1-3) ...
Setting up node-node-uuid (3.3.2-2) ...
Setting up node-inflight (1.0.6-1) ...
Setting up node-has-to-string-tag-x (1.4.1+dfsg-1) ...
Setting up node-rc (1.1.6-2) ...
Setting up build-essential (12.6) ...
Setting up node-minimatch (3.0.4-3) ...
Setting up node-npm-package-arg (6.0.0-2) ...
Setting up node-verror (1.10.0-1) ...
Setting up node-getpass (0.1.7-1) ...
Setting up node-nopt (3.0.6-3) ...
Setting up node-isurl (1.0.0-1) ...
Setting up node-color-convert (1.9.0-3) ...
Setting up node-string-width (2.1.1-1) ...
Setting up node-har-validator (5.1.0-1) ...
Setting up node-validate-npm-package-license (3.0.1-1) ...
Setting up node-readable-stream (2.3.6-1) ...
Setting up node-through2 (2.0.5-2) ...
Setting up node-lru-cache (5.1.1-4) ...
Setting up node-bcrypt-pbkdf (1.0.1-1) ...
Setting up node-end-of-stream (1.4.1-1) ...
Setting up node-pump (3.0.0-1) ...
Setting up node-jsprim (1.4.0-1) ...
Setting up node-flush-write-stream (1.0.3-1) ...
Setting up node-find-up (2.1.0-1) ...
Setting up node-duplexify (3.6.1-1) ...
Setting up node-cross-spawn (5.1.0-2) ...
Setting up node-normalize-package-data (2.4.0-1) ...
Setting up node-ansi-styles (3.2.1-1) ...
Setting up node-glob (7.1.3-2) ...
Setting up node-pumpify (1.5.1-1) ...
Setting up node-widest-line (1.2.2-1) ...
Setting up node-got (7.1.0-1) ...
Setting up node-chalk (2.3.0-2) ...
Setting up node-registry-url (3.1.0-1) ...
Setting up node-registry-auth-token (3.3.1-1) ...
Setting up node-wide-align (1.1.0-1) ...
Setting up node-ansi-align (2.0.0-1) ...
Setting up node-rimraf (2.6.2-1) ...
Setting up node-sshpk (1.13.1+dfsg-2) ...
Setting up node-stream-each (1.2.2-2) ...
Setting up node-mississippi (3.0.0-1) ...
Setting up node-execa (0.10.0+dfsg-1) ...
Setting up node-read-package-json (2.0.13-1) ...
Setting up node-copy-concurrently (1.0.5-4) ...
Setting up node-move-concurrently (1.0.1-2) ...
Setting up node-term-size (1.2.0+dfsg-2) ...
Setting up node-os-locale (2.0.0-1) ...
Setting up node-http-signature (1.2.0-1) ...
Setting up node-fs-vacuum (1.2.10-2) ...
Setting up node-gauge (2.7.4-1) ...
Setting up node-wrap-ansi (4.0.0-1) ...
Setting up node-boxen (1.2.2-1) ...
Setting up node-package-json (4.0.1-1) ...
Setting up node-latest-version (3.1.0-1) ...
Setting up node-request (2.88.1-2) ...
Setting up node-npmlog (4.1.2-1) ...
Setting up node-cliui (4.1.0-1) ...
Setting up node-yargs (10.0.3-2) ...
Setting up node-cacache (11.3.2-2) ...
Setting up node-gyp (3.8.0-6) ...
Setting up node-libnpx (10.2.0+repack-1) ...
Setting up npm (5.8.0+ds6-4+deb10u2) ...
Processing triggers for libc-bin (2.28-10) ...
npm WARN npm npm does not support Node.js v10.24.0
npm WARN npm You should probably upgrade to a newer version of node as we
npm WARN npm can't make any promises that npm will work with this version.
npm WARN npm Supported releases of Node.js are the latest release of 4, 6, 7, 8, 9.
npm WARN npm You can find the latest version at https://nodejs.org/
npm WARN [email protected] had bundled packages that do not match the required version(s). They have been replaced with non-bundled versions.

npm ERR! code EAI_AGAIN
npm ERR! errno EAI_AGAIN
npm ERR! request to https://registry.npmjs.org/@npmcli%2frun-script failed, reason: getaddrinfo EAI_AGAIN registry.npmjs.org registry.npmjs.org:443

npm ERR! A complete log of this run can be found in:
npm ERR!     /root/.npm/_logs/2021-09-07T16_43_24_227Z-debug.log
ERROR: Service 'fids' failed to build: The command '/bin/sh -c apt-get update && 	apt-get install -y libpq-dev gcc npm make && 	npm install npm@latest -g' returned a non-zero code: 1

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.