New comment by ahesford on void-packages repository https://github.com/void-linux/void-packages/pull/28261#issuecomment-769042088 Comment: Of 726 packages rebuilt through the following loop: ```zsh foreach I (srcpkgs/python3-*) pkg=$(basename $(realpath -e $I)) [ -n "$pkg" ] || continue { ./xbps-src show-hostmakedepends $pkg | grep -q python3-setuptools } || continue grep -q " $pkg\$" setuptools.dependants && continue if ./xbps-src pkg -f -m /tmp/masterdir.x86_64 "$pkg"; then echo "- [x] $pkg" >> setuptools.dependants else echo "- [ ] $pkg" >> setuptools.dependants fi ./xbps-src -m /tmp/masterdir.x86_64 clean end ``` The following 29 failed to rebuild: - [x] python3-Flask-User - [x] python3-PGPy - [x] python3-aiohttp-sse-client - [x] python3-alsa - [ ] python3-audioread - [ ] python-dateutil - [ ] python3-ffmpeg-python - [ ] python3-gitchangelog - [ ] python3-guessit - [ ] python3-humanize - [ ] python3-irc - [ ] python3-jaraco.classes - [ ] python3-jaraco.collections - [ ] python3-jaraco.functools - [ ] python3-jaraco.text - [ ] python3-keyring - [ ] python3-keyrings-alt - [ ] python3-keyutils - [ ] python3-marisa-trie - [ ] python3-numexpr - [ ] python3-pluggy - [ ] python3-portend - [ ] python3-pylast - [ ] python3-pysol_cards - [ ] python3-pytest-qt - [ ] python3-rebulk - [ ] python3-testtools - [ ] python3-treq - [ ] python3-zope.security I'm working through this list to resolve these issues. If I'm overlooking any packages that build with setuptools, please leave a comment.