python-google-api-python-client: fix permissions

Some files are not world/all readable when extracted, so chmod them.

Closes #5166.
This commit is contained in:
Peter Bui 2016-11-13 10:32:12 -05:00 committed by Alessio Sergi
parent 771533e94b
commit a3349e1536

View file

@ -1,7 +1,7 @@
# Template file for 'python-google-api-python-client'
pkgname=python-google-api-python-client
version=1.5.5
revision=1
revision=2
noarch=yes
wrksrc="${pkgname#*-}-${version}"
build_style=python-module
@ -15,6 +15,11 @@ homepage="https://github.com/google/google-api-python-client/"
distfiles="${PYPI_SITE}/g/google-api-python-client/google-api-python-client-${version}.tar.gz"
checksum=c9f6bf15c76b05a3c2e301a5509e97f11c5902fb6b03dcb7faf5b5337c66f557
post_extract() {
# fix permissions
chmod -R go+rX .
}
python3-google-api-python-client_package() {
noarch=yes
depends="python3-httplib2 python3-oauth2client python3-uritemplate python3-six"