Skip to content

Instantly share code, notes, and snippets.

@sritasngh
Last active August 5, 2021 11:45
Show Gist options
  • Save sritasngh/50432d5475789556e995ffa676634920 to your computer and use it in GitHub Desktop.
Save sritasngh/50432d5475789556e995ffa676634920 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
##############################################################################
# SPDX-License-Identifier: GPL-2.0
# SPDX-FileCopyrightText: 2021 Sarita Singh <[email protected]>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# version 2 as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
##############################################################################
source "$(dirname ${BASH_SOURCE[0]})/../../utils/utils.sh"
#
# Don't show the -y option. Should only be used for install testing, as using
# it without being careful can destroy your system.
#
YesOpt=''
EVERYTHING=''
RUNTIME=''
BUILDTIME=''
## Options parsing and setup
# parse options
OPTS=$(getopt -o rbehy --long runtime,buildtime,everything,help -n 'mod_deps' -- "$@")
if [[ $? -ne 0 ]]; then
OPTS='--help'
fi
eval set -- "$OPTS"
# if no options or just -y then do everything
if [[ $OPTS == ' --' || $OPTS == ' -y --' ]]; then
EVERYTHING=true
fi
while true; do
case "$1" in
-r|--runtime) RUNTIME=true; shift;;
-b|--buildtime) BUILDTIME=true; shift;;
-e|--everything) EVERYTHING=true; shift;;
-y) YesOpt='-y'; shift;;
-h|--help) show_help_for_mod_deps; exit;;
--) shift; break;;
*) echo "ERROR: option $1 not recognised"; exit 1;;
esac
done
set -o errexit -o nounset -o pipefail
must_run_as_root
need_lsb_release
if [[ $EVERYTHING ]]; then
echo "*** Installing both runtime and buildtime dependencies ***"
RUNTIME=true
BUILDTIME=true
fi
# figure out what distro we're on
DISTRO=$(lsb_release --id --short)
CODENAME=$(lsb_release --codename --short)
########################################################################
if [[ $BUILDTIME ]]; then
echo "*** Installing $DISTRO buildtime dependencies ***";
case "$DISTRO" in
Debian|Ubuntu)
apt-get $YesOpt install \
python3 python3-pip \
python3-dev libbz2-1.0 xz-utils zlib1g libxml2-dev libxslt1-dev libpopt0
;;
Fedora)
yum $YesOpt install \
python3 python3-pip \
python3-devel xz-libs zlib libxml2-devel libxslt-devel bzip2-libs libpopt0
;;
RedHatEnterprise*|CentOS)
yum $YesOpt install epel-release;
yum $YesOpt install \
rh-python3 python3-pip \
python3-devel zlib bzip2-libs xz-libs libxml2-devel libxslt-devel libpopt0
;;
*) echo "ERROR: Unknown or Unsupported $DISTRO $CODENAME release, please report to the mailing list"; exit 1;;
esac
su fossy -c "python3 -m pip install --upgrade --user pip setuptools wheel"
su fossy -c "python3 -m pip install --upgrade --user scancode-toolkit"
fi
if [[ $RUNTIME ]]; then
echo "*** Installing $DISTRO runtime dependencies ***";
case "$DISTRO" in
Debian|Ubuntu)
apt-get $YesOpt install \
python3 python3-pip \
python3-dev libbz2-1.0 xz-utils zlib1g libxml2-dev libxslt1-dev libpopt0
;;
Fedora)
yum $YesOpt install \
python3 python3-pip \
python3-devel xz-libs zlib libxml2-devel libxslt-devel bzip2-libs libpopt0
;;
RedHatEnterprise*|CentOS)
yum $YesOpt install epel-release;
yum $YesOpt install \
rh-python3 python3-pip \
python3-devel zlib bzip2-libs xz-libs libxml2-devel libxslt-devel libpopt0
;;
*) echo "ERROR: Unknown or Unsupported $DISTRO $CODENAME release, please report to the mailing list"; exit 1;;
esac
su fossy -c "python3 -m pip install --upgrade --user pip setuptools wheel"
su fossy -c "python3 -m pip install --upgrade --user scancode-toolkit"
fi
#######################################################################
mon@mon:~/Documents/cmake-buildsystem$ sudo utils/fo-installdeps
[sudo] password for mon:
*** Installing both runtime and buildtime dependencies ***
install core dependencies
*** Installing Debian buildtime dependencies ***
DB: Installing build essential.....
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'libglib2.0-cil-dev' for regex 'libglib2.0'
Note, selecting 'libglib2.0-tests' for regex 'libglib2.0'
Note, selecting 'libglib2.0-0-dbg' for regex 'libglib2.0'
Note, selecting 'libglib2.0-dev-bin' for regex 'libglib2.0'
Note, selecting 'libglib2.0-bin' for regex 'libglib2.0'
Note, selecting 'libglib2.0-cil' for regex 'libglib2.0'
Note, selecting 'libglib2.0-dev' for regex 'libglib2.0'
Note, selecting 'libglib2.0-doc' for regex 'libglib2.0'
Note, selecting 'libglib2.0-data' for regex 'libglib2.0'
Note, selecting 'libglib2.0-0' for regex 'libglib2.0'
libboost-program-options-dev is already the newest version (1.67.0.1).
libboost-regex-dev is already the newest version (1.67.0.1).
build-essential is already the newest version (12.6).
composer is already the newest version (1.8.4-1+deb10u1).
libcunit1-dev is already the newest version (2.1-3-dfsg-2+b12).
curl is already the newest version (7.64.0-4+deb10u2).
devscripts is already the newest version (2.19.5+deb10u1).
libdistro-info-perl is already the newest version (0.21).
libmagic-dev is already the newest version (1:5.35-4+deb10u2).
libglib2.0-0 is already the newest version (2.58.3-2+deb10u3).
libglib2.0-bin is already the newest version (2.58.3-2+deb10u3).
libglib2.0-data is already the newest version (2.58.3-2+deb10u3).
libglib2.0-dev is already the newest version (2.58.3-2+deb10u3).
libglib2.0-dev-bin is already the newest version (2.58.3-2+deb10u3).
libglib2.0-doc is already the newest version (2.58.3-2+deb10u3).
libglib2.0-tests is already the newest version (2.58.3-2+deb10u3).
libglib2.0-cil is already the newest version (2.12.40-2).
libglib2.0-cil-dev is already the newest version (2.12.40-2).
libicu-dev is already the newest version (63.1-6+deb10u1).
libtext-template-perl is already the newest version (1.55-1).
libxml2-dev is already the newest version (2.9.4+dfsg1-7+deb10u2).
libmxml-dev is already the newest version (2.12-2).
patch is already the newest version (2.7.6-3+deb10u1).
libpq-dev is already the newest version (11.12-0+deb10u1).
librpm-dev is already the newest version (4.14.2.1+dfsg1-1).
rpm is already the newest version (4.14.2.1+dfsg1-1).
subversion is already the newest version (1.10.4-1+deb10u2).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists... Done
Building dependency tree
Reading state information... Done
php-mbstring is already the newest version (2:7.3+69).
php7.3-cli is already the newest version (7.3.29-1~deb10u1).
php7.3-gd is already the newest version (7.3.29-1~deb10u1).
php7.3-xml is already the newest version (7.3.29-1~deb10u1).
php7.3-zip is already the newest version (7.3.29-1~deb10u1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists... Done
Building dependency tree
Reading state information... Done
postgresql-server-dev-11 is already the newest version (11.12-0+deb10u1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
*** Installing Debian runtime dependencies ***
*** For optional email notifications a Mail Transport Agent Must be ***
*** installed. Consult with your system administrator. Or try ***
*** apt-get install mail-transport-agent, pick one and install it***
doing runtime
Reading package lists... Done
Building dependency tree
Reading state information... Done
apache2 is already the newest version (2.4.38-3+deb10u5).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists... Done
Building dependency tree
Reading state information... Done
binutils is already the newest version (2.31.1-16).
cabextract is already the newest version (1.9-1).
genisoimage is already the newest version (9:1.1.11-3+b2).
cpio is already the newest version (2.12+dfsg-9).
dpkg-dev is already the newest version (1.19.7).
git is already the newest version (1:2.20.1-2+deb10u3).
libxml2 is already the newest version (2.9.4+dfsg1-7+deb10u2).
p7zip is already the newest version (16.02+dfsg-6).
p7zip-full is already the newest version (16.02+dfsg-6).
php-pear is already the newest version (1:1.10.6+submodules+notgz-1.1+deb10u2).
poppler-utils is already the newest version (0.71.0-5).
sleuthkit is already the newest version (4.6.5-1+deb10u1).
subversion is already the newest version (1.10.4-1+deb10u2).
unrar-free is already the newest version (1:0.0.1+cvs20140707-4).
unzip is already the newest version (6.0-23+deb10u2).
upx-ucl is already the newest version (3.95-1).
wget is already the newest version (1.20.1-1.1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Reading package lists... Done
Building dependency tree
Reading state information... Done
libboost-program-options1.67.0 is already the newest version (1.67.0-13+deb10u1).
libboost-regex1.67.0 is already the newest version (1.67.0-13+deb10u1).
libicu63 is already the newest version (63.1-6+deb10u1).
php-gettext is already the newest version (1.0.12-0.1).
postgresql-11 is already the newest version (11.12-0+deb10u1).
s-nail is already the newest version (14.9.11-2).
libapache2-mod-php7.3 is already the newest version (7.3.29-1~deb10u1).
php7.3 is already the newest version (7.3.29-1~deb10u1).
php7.3-cli is already the newest version (7.3.29-1~deb10u1).
php7.3-curl is already the newest version (7.3.29-1~deb10u1).
php7.3-mbstring is already the newest version (7.3.29-1~deb10u1).
php7.3-pgsql is already the newest version (7.3.29-1~deb10u1).
php7.3-xml is already the newest version (7.3.29-1~deb10u1).
php7.3-zip is already the newest version (7.3.29-1~deb10u1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
/home/mon/Documents/cmake-buildsystem /home/mon/Documents/cmake-buildsystem
composer 1.9.0 will be installed to: /usr/local/bin/composer (this will override any old executable)
/home/mon/Documents/cmake-buildsystem
./mod_deps -b -r
*** Installing Debian buildtime dependencies ***
Reading package lists... Done
Building dependency tree
Reading state information... Done
libjson-c-dev is already the newest version (0.12.1+ds-2+deb10u1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
*** Installing Debian runtime dependencies ***
Reading package lists... Done
Building dependency tree
Reading state information... Done
libjson-c3 is already the newest version (0.12.1+ds-2+deb10u1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
./mod_deps -b -r
*** Installing Debian buildtime dependencies ***
Reading package lists... Done
Building dependency tree
Reading state information... Done
libgcrypt20-dev is already the newest version (1.8.4-5+deb10u1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
*** Installing Debian runtime dependencies ***
Reading package lists... Done
Building dependency tree
Reading state information... Done
bzip2 is already the newest version (1.0.6-9.2~deb10u1).
cabextract is already the newest version (1.9-1).
genisoimage is already the newest version (9:1.1.11-3+b2).
cpio is already the newest version (2.12+dfsg-9).
gzip is already the newest version (1.9-3).
libgcrypt20 is already the newest version (1.8.4-5+deb10u1).
p7zip is already the newest version (16.02+dfsg-6).
p7zip-full is already the newest version (16.02+dfsg-6).
poppler-utils is already the newest version (0.71.0-5).
rpm is already the newest version (4.14.2.1+dfsg1-1).
sleuthkit is already the newest version (4.6.5-1+deb10u1).
tar is already the newest version (1.30+dfsg-6).
unrar-free is already the newest version (1:0.0.1+cvs20140707-4).
unzip is already the newest version (6.0-23+deb10u2).
upx-ucl is already the newest version (3.95-1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
./mod_deps -b -r
*** Installing Debian buildtime dependencies ***
Reading package lists... Done
Building dependency tree
Reading state information... Done
libmagic-dev is already the newest version (1:5.35-4+deb10u2).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
*** Installing Debian runtime dependencies ***
Reading package lists... Done
Building dependency tree
Reading state information... Done
libmagic1 is already the newest version (1:5.35-4+deb10u2).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
./mod_deps -b -r
*** Installing Debian buildtime dependencies ***
Reading package lists... Done
Building dependency tree
Reading state information... Done
libboost-filesystem-dev is already the newest version (1.67.0.1).
libboost-program-options-dev is already the newest version (1.67.0.1).
libboost-regex-dev is already the newest version (1.67.0.1).
libboost-system-dev is already the newest version (1.67.0.1).
libjsoncpp-dev is already the newest version (1.7.4-3).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
*** Installing Debian runtime dependencies ***
Reading package lists... Done
Building dependency tree
Reading state information... Done
libboost-filesystem1.67.0 is already the newest version (1.67.0-13+deb10u1).
libboost-program-options1.67.0 is already the newest version (1.67.0-13+deb10u1).
libboost-regex1.67.0 is already the newest version (1.67.0-13+deb10u1).
libjsoncpp1 is already the newest version (1.7.4-3).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
./mod_deps -b -r
*** Installing Debian buildtime dependencies ***
*** Installing Debian runtime dependencies ***
Reading package lists... Done
Building dependency tree
Reading state information... Done
git is already the newest version (1:2.20.1-2+deb10u3).
subversion is already the newest version (1.10.4-1+deb10u2).
wget is already the newest version (1.20.1-1.1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
./mod_deps -b -r
*** Installing Debian buildtime dependencies ***
Reading package lists... Done
Building dependency tree
Reading state information... Done
libgcrypt20-dev is already the newest version (1.8.4-5+deb10u1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
*** Installing Debian runtime dependencies ***
Reading package lists... Done
Building dependency tree
Reading state information... Done
libgcrypt20 is already the newest version (1.8.4-5+deb10u1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
./mod_deps -b -r
*** Installing Debian buildtime dependencies ***
Reading package lists... Done
Building dependency tree
Reading state information... Done
librpm-dev is already the newest version (4.14.2.1+dfsg1-1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
*** Installing Debian runtime dependencies ***
Reading package lists... Done
Building dependency tree
Reading state information... Done
rpm is already the newest version (4.14.2.1+dfsg1-1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
./mod_deps -b -r
*** Installing Debian buildtime dependencies ***
Reading package lists... Done
Building dependency tree
Reading state information... Done
libboost-filesystem-dev is already the newest version (1.67.0.1).
libboost-system-dev is already the newest version (1.67.0.1).
libjsoncpp-dev is already the newest version (1.7.4-3).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
*** Installing Debian runtime dependencies ***
Reading package lists... Done
Building dependency tree
Reading state information... Done
libboost-filesystem1.67.0 is already the newest version (1.67.0-13+deb10u1).
libjsoncpp1 is already the newest version (1.7.4-3).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
./mod_deps -b -r
*** Installing Debian buildtime dependencies ***
Reading package lists... Done
Building dependency tree
Reading state information... Done
libglib2.0-dev is already the newest version (2.58.3-2+deb10u3).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
*** Installing Debian runtime dependencies ***
Reading package lists... Done
Building dependency tree
Reading state information... Done
libglib2.0-0 is already the newest version (2.58.3-2+deb10u3).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
./mod_deps -b -r
*** Installing Debian buildtime dependencies ***
Reading package lists... Done
Building dependency tree
Reading state information... Done
libbz2-1.0 is already the newest version (1.0.6-9.2~deb10u1).
libxml2-dev is already the newest version (2.9.4+dfsg1-7+deb10u2).
libpopt0 is already the newest version (1.16-12).
python3 is already the newest version (3.7.3-1).
python3 set to manually installed.
xz-utils is already the newest version (5.2.4-1).
xz-utils set to manually installed.
zlib1g is already the newest version (1:1.2.11.dfsg-1).
The following additional packages will be installed:
dh-python libexpat1-dev libpython3-dev libpython3.7-dev python-pip-whl python3-asn1crypto python3-cffi-backend python3-crypto python3-cryptography
python3-entrypoints python3-keyring python3-keyrings.alt python3-secretstorage python3-setuptools python3-wheel python3.7-dev
Suggested packages:
python-crypto-doc python-cryptography-doc python3-cryptography-vectors libkf5wallet-bin gir1.2-gnomekeyring-1.0 python-secretstorage-doc
python-setuptools-doc
The following NEW packages will be installed:
dh-python libexpat1-dev libpython3-dev libpython3.7-dev libxslt1-dev python-pip-whl python3-asn1crypto python3-cffi-backend python3-crypto
python3-cryptography python3-dev python3-entrypoints python3-keyring python3-keyrings.alt python3-pip python3-secretstorage python3-setuptools
python3-wheel python3.7-dev
0 upgraded, 19 newly installed, 0 to remove and 0 not upgraded.
Need to get 52.5 MB of archives.
After this operation, 96.8 MB of additional disk space will be used.
Do you want to continue? [Y/n] Y
Get:1 http://deb.debian.org/debian buster/main amd64 dh-python all 3.20190308 [99.3 kB]
Get:2 http://deb.debian.org/debian buster/main amd64 libexpat1-dev amd64 2.2.6-2+deb10u1 [153 kB]
Get:3 http://deb.debian.org/debian buster/main amd64 libpython3.7-dev amd64 3.7.3-2+deb10u3 [48.4 MB]
48% [3 libpython3.7-dev 30.0 MB/48.4 MB 62%] Get:4 http://deb.debian.org/debian buster/main amd64 libpython3-dev amd64 3.7.3-1 [20.1 kB]
Get:5 http://deb.debian.org/debian buster/main amd64 libxslt1-dev amd64 1.1.32-2.2~deb10u1 [519 kB]
Get:6 http://deb.debian.org/debian buster/main amd64 python-pip-whl all 18.1-5 [1,591 kB]
Get:7 http://deb.debian.org/debian buster/main amd64 python3-asn1crypto all 0.24.0-1 [78.2 kB]
Get:8 http://deb.debian.org/debian buster/main amd64 python3-cffi-backend amd64 1.12.2-1 [79.7 kB]
Get:9 http://deb.debian.org/debian buster/main amd64 python3-crypto amd64 2.6.1-9+b1 [263 kB]
Get:10 http://deb.debian.org/debian buster/main amd64 python3-cryptography amd64 2.6.1-3+deb10u2 [219 kB]
Get:11 http://deb.debian.org/debian buster/main amd64 python3.7-dev amd64 3.7.3-2+deb10u3 [510 kB]
Get:12 http://deb.debian.org/debian buster/main amd64 python3-dev amd64 3.7.3-1 [1,264 B]
Get:13 http://deb.debian.org/debian buster/main amd64 python3-entrypoints all 0.3-1 [5,508 B]
Get:14 http://deb.debian.org/debian buster/main amd64 python3-secretstorage all 2.3.1-2 [14.2 kB]
Get:15 http://deb.debian.org/debian buster/main amd64 python3-keyring all 17.1.1-1 [43.1 kB]
Get:16 http://deb.debian.org/debian buster/main amd64 python3-keyrings.alt all 3.1.1-1 [18.2 kB]
Get:17 http://deb.debian.org/debian buster/main amd64 python3-pip all 18.1-5 [171 kB]
Get:18 http://deb.debian.org/debian buster/main amd64 python3-setuptools all 40.8.0-1 [306 kB]
Get:19 http://deb.debian.org/debian buster/main amd64 python3-wheel all 0.32.3-2 [19.4 kB]
Fetched 52.5 MB in 13min 20s (65.6 kB/s)
Selecting previously unselected package dh-python.
(Reading database ... 140656 files and directories currently installed.)
Preparing to unpack .../00-dh-python_3.20190308_all.deb ...
Unpacking dh-python (3.20190308) ...
Selecting previously unselected package libexpat1-dev:amd64.
Preparing to unpack .../01-libexpat1-dev_2.2.6-2+deb10u1_amd64.deb ...
Unpacking libexpat1-dev:amd64 (2.2.6-2+deb10u1) ...
Selecting previously unselected package libpython3.7-dev:amd64.
Preparing to unpack .../02-libpython3.7-dev_3.7.3-2+deb10u3_amd64.deb ...
Unpacking libpython3.7-dev:amd64 (3.7.3-2+deb10u3) ...
Selecting previously unselected package libpython3-dev:amd64.
Preparing to unpack .../03-libpython3-dev_3.7.3-1_amd64.deb ...
Unpacking libpython3-dev:amd64 (3.7.3-1) ...
Selecting previously unselected package libxslt1-dev:amd64.
Preparing to unpack .../04-libxslt1-dev_1.1.32-2.2~deb10u1_amd64.deb ...
Unpacking libxslt1-dev:amd64 (1.1.32-2.2~deb10u1) ...
Selecting previously unselected package python-pip-whl.
Preparing to unpack .../05-python-pip-whl_18.1-5_all.deb ...
Unpacking python-pip-whl (18.1-5) ...
Selecting previously unselected package python3-asn1crypto.
Preparing to unpack .../06-python3-asn1crypto_0.24.0-1_all.deb ...
Unpacking python3-asn1crypto (0.24.0-1) ...
Selecting previously unselected package python3-cffi-backend.
Preparing to unpack .../07-python3-cffi-backend_1.12.2-1_amd64.deb ...
Unpacking python3-cffi-backend (1.12.2-1) ...
Selecting previously unselected package python3-crypto.
Preparing to unpack .../08-python3-crypto_2.6.1-9+b1_amd64.deb ...
Unpacking python3-crypto (2.6.1-9+b1) ...
Selecting previously unselected package python3-cryptography.
Preparing to unpack .../09-python3-cryptography_2.6.1-3+deb10u2_amd64.deb ...
Unpacking python3-cryptography (2.6.1-3+deb10u2) ...
Selecting previously unselected package python3.7-dev.
Preparing to unpack .../10-python3.7-dev_3.7.3-2+deb10u3_amd64.deb ...
Unpacking python3.7-dev (3.7.3-2+deb10u3) ...
Selecting previously unselected package python3-dev.
Preparing to unpack .../11-python3-dev_3.7.3-1_amd64.deb ...
Unpacking python3-dev (3.7.3-1) ...
Selecting previously unselected package python3-entrypoints.
Preparing to unpack .../12-python3-entrypoints_0.3-1_all.deb ...
Unpacking python3-entrypoints (0.3-1) ...
Selecting previously unselected package python3-secretstorage.
Preparing to unpack .../13-python3-secretstorage_2.3.1-2_all.deb ...
Unpacking python3-secretstorage (2.3.1-2) ...
Selecting previously unselected package python3-keyring.
Preparing to unpack .../14-python3-keyring_17.1.1-1_all.deb ...
Unpacking python3-keyring (17.1.1-1) ...
Selecting previously unselected package python3-keyrings.alt.
Preparing to unpack .../15-python3-keyrings.alt_3.1.1-1_all.deb ...
Unpacking python3-keyrings.alt (3.1.1-1) ...
Selecting previously unselected package python3-pip.
Preparing to unpack .../16-python3-pip_18.1-5_all.deb ...
Unpacking python3-pip (18.1-5) ...
Selecting previously unselected package python3-setuptools.
Preparing to unpack .../17-python3-setuptools_40.8.0-1_all.deb ...
Unpacking python3-setuptools (40.8.0-1) ...
Selecting previously unselected package python3-wheel.
Preparing to unpack .../18-python3-wheel_0.32.3-2_all.deb ...
Unpacking python3-wheel (0.32.3-2) ...
Setting up python3-entrypoints (0.3-1) ...
Setting up dh-python (3.20190308) ...
Setting up libxslt1-dev:amd64 (1.1.32-2.2~deb10u1) ...
Setting up python3-setuptools (40.8.0-1) ...
Setting up python3-wheel (0.32.3-2) ...
Setting up libexpat1-dev:amd64 (2.2.6-2+deb10u1) ...
Setting up python3-crypto (2.6.1-9+b1) ...
Setting up python-pip-whl (18.1-5) ...
Setting up python3-asn1crypto (0.24.0-1) ...
Setting up python3-cffi-backend (1.12.2-1) ...
Setting up libpython3.7-dev:amd64 (3.7.3-2+deb10u3) ...
Setting up python3.7-dev (3.7.3-2+deb10u3) ...
Setting up python3-cryptography (2.6.1-3+deb10u2) ...
Setting up python3-pip (18.1-5) ...
Setting up python3-keyrings.alt (3.1.1-1) ...
Setting up libpython3-dev:amd64 (3.7.3-1) ...
Setting up python3-secretstorage (2.3.1-2) ...
Setting up python3-dev (3.7.3-1) ...
Setting up python3-keyring (17.1.1-1) ...
Processing triggers for man-db (2.8.5-2) ...
su: user fossy does not exist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment