add missing packages for python reinstall on gentoo

Change-Id: I1022c2c6db843701e9e6ece87b0ac87071723b99
This commit is contained in:
Matthew Thode 2021-01-17 02:34:50 -06:00
parent 3769ef546e
commit 45796c65c5
No known key found for this signature in database
GPG Key ID: 64A37BEAAE19A4E8

View File

@ -29,7 +29,7 @@ echo "PYTHON_TARGETS=\"${GENTOO_PYTHON_TARGETS}\"" >> /etc/portage/make.conf
# make sure we have the new python for portage bevore we possibly remove python 2.7
# this is done one by one with nodeps because it can sometimes have dependency loops
PYTHON_PACKAGES="dev-python/six dev-python/packaging dev-python/appdirs dev-python/setuptools dev-python/pyparsing dev-python/certifi"
PYTHON_PACKAGES="dev-python/six dev-python/toml dev-python/pyproject2setuppy dev-python/packaging dev-python/appdirs dev-python/setuptools dev-python/pyparsing dev-python/certifi"
for PACKAGE in ${PYTHON_PACKAGES}; do
emerge ${GENTOO_EMERGE_DEFAULT_OPTS} --oneshot --update --newuse --deep --nodeps "${PACKAGE}"
done