From 20322806a74e047e99768c938403305493371b1e Mon Sep 17 00:00:00 2001 From: Peter Bui Date: Sun, 27 Sep 2020 10:24:07 -0400 Subject: [PATCH] python3-grako: fix permissions chmod +r files in Python3 site-packages to make them world/other readable. --- srcpkgs/python3-grako/template | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/srcpkgs/python3-grako/template b/srcpkgs/python3-grako/template index f3e1258003c..23fe41f35f3 100644 --- a/srcpkgs/python3-grako/template +++ b/srcpkgs/python3-grako/template @@ -1,7 +1,7 @@ # Template file for 'python3-grako' pkgname=python3-grako version=3.99.9 -revision=5 +revision=6 wrksrc="grako-$version" build_style=python3-module hostmakedepends="python3-setuptools python3-Cython" @@ -19,5 +19,7 @@ pre_build() { sed -i '/setup_requires=/d' setup.py } post_install() { + # TODO: Find out why we need to change these permissions manually + chmod -R +r "${DESTDIR}/${py3_sitelib}" vlicense LICENSE.txt }