net-misc/pycnb: Fix permissions on files in ${S}

setuptools preserves these permissions when installing them.

Bug: https://bugs.gentoo.org/561546

Package-Manager: portage-2.2.21_p119
This commit is contained in:
Mike Gilbert
2015-09-26 13:27:50 -04:00
parent 42ed104bcc
commit 2a299cd48c

View File

@@ -20,3 +20,9 @@ DEPEND="dev-python/cement[${PYTHON_USEDEP}]
dev-python/twisted-web
dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND="${DEPEND}"
src_unpack() {
default
find ${P} -type d -exec chmod 0755 {} + || die
find ${P} -type f -exec chmod 0644 {} + || die
}