New review comment by ahesford on void-packages repository https://github.com/void-linux/void-packages/pull/47057#discussion_r1382499424 Comment: This is wrong; not only is it more complicated than it needs to be, but it uses the wrong egg-info name. You should also declare the variables you create local. At a minimum, you can reduce this dance to somthing like: ```suggestion local _sitelib="${PKGDESTDIR}/${py3_sitelib}" vmove "${py3_sitelib}" mv "${_sitelib}"/gpg-*.egg/gpg "${_sitelib}" mv "${_sitelib}"/gpg-*.egg/EGG-INFO \ "${_sitelib}/gpg-${version}-py${py3_ver}.egg-info" ``` However, it would be better still to figure out how to install the Python package the right way.