New comment by ericonr on void-packages repository https://github.com/void-linux/void-packages/pull/27080#issuecomment-742725828 Comment: No problem :) Looking at it, this package really should be available on all archs... Coulld you switch `python3-pillow-simd` to `python3-Pillow` in `depends`? Could make it conditional on arch, if you want, so something like: ``` case $XBPS_TARGET_MACHINE in x86_64*) depends+=" python3-pillow-simd" ;; *) depends+=" python3-Pillow" ;; esac ```