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:
parent
771533e94b
commit
a3349e1536
|
@ -1,7 +1,7 @@
|
||||||
# Template file for 'python-google-api-python-client'
|
# Template file for 'python-google-api-python-client'
|
||||||
pkgname=python-google-api-python-client
|
pkgname=python-google-api-python-client
|
||||||
version=1.5.5
|
version=1.5.5
|
||||||
revision=1
|
revision=2
|
||||||
noarch=yes
|
noarch=yes
|
||||||
wrksrc="${pkgname#*-}-${version}"
|
wrksrc="${pkgname#*-}-${version}"
|
||||||
build_style=python-module
|
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"
|
distfiles="${PYPI_SITE}/g/google-api-python-client/google-api-python-client-${version}.tar.gz"
|
||||||
checksum=c9f6bf15c76b05a3c2e301a5509e97f11c5902fb6b03dcb7faf5b5337c66f557
|
checksum=c9f6bf15c76b05a3c2e301a5509e97f11c5902fb6b03dcb7faf5b5337c66f557
|
||||||
|
|
||||||
|
post_extract() {
|
||||||
|
# fix permissions
|
||||||
|
chmod -R go+rX .
|
||||||
|
}
|
||||||
|
|
||||||
python3-google-api-python-client_package() {
|
python3-google-api-python-client_package() {
|
||||||
noarch=yes
|
noarch=yes
|
||||||
depends="python3-httplib2 python3-oauth2client python3-uritemplate python3-six"
|
depends="python3-httplib2 python3-oauth2client python3-uritemplate python3-six"
|
||||||
|
|
Loading…
Reference in New Issue