This repository was archived by the owner on Apr 18, 2023. It is now read-only.
This repository was archived by the owner on Apr 18, 2023. It is now read-only.
Packages built in docker-makepkg may hide PKGBUILD dependency issues. #19
Open
Description
Example: keepmenu-git depends on python-pynput which pulls in python-setuptools. Now keepmenu-git builds successfully with docker-makepkg.
However, if python-pynput is built separately and then keepmenu-git is built in a clean chroot using the Arch devtools like:
$ extra-x86_64-build -- -I ~/python-pynput-1.7.4-1-any.pkg.tar.zst
the build will fail because python-setuptools should be a dependency for this build but it's not required by the PKGBUILD (which was my mistake, pointed out by someone else).
So, if paru builds multiple dependency packages, the previous makedepends packages should be removed before building the final package.