diff options
author | Peter Bui <pnutzh4x0r@gmail.com> | 2015-06-03 01:04:03 -0500 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2015-06-09 12:22:53 +0000 |
commit | 10384b996ced1290b48420a8aac10787f96322e6 (patch) | |
tree | 338bc6429b9b347ebd86a3d46f2c3680e4787e14 /testing/py-httplib2 | |
parent | 4e3bd6494e558935acb173cd37e2129552afbffc (diff) | |
download | aports-10384b996ced1290b48420a8aac10787f96322e6.tar.bz2 aports-10384b996ced1290b48420a8aac10787f96322e6.tar.xz |
testing/py-httplib2: make cacerts.txt world readable
Diffstat (limited to 'testing/py-httplib2')
-rw-r--r-- | testing/py-httplib2/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/py-httplib2/APKBUILD b/testing/py-httplib2/APKBUILD index 18acc0a1ff..0b4e986c04 100644 --- a/testing/py-httplib2/APKBUILD +++ b/testing/py-httplib2/APKBUILD @@ -3,7 +3,7 @@ pkgname=py-httplib2 _pkgname=httplib2 pkgver=0.9 -pkgrel=0 +pkgrel=1 pkgdesc="A Python HTTP client library" url="https://github.com/jcgregorio/httplib2" arch="noarch" @@ -34,6 +34,7 @@ build() { package() { cd "$_builddir" python setup.py install --prefix=/usr --root="$pkgdir" || return 1 + chmod o+r $pkgdir/usr/lib/python2.7/site-packages/httplib2/cacerts.txt } md5sums="09d8e8016911fc40e2e4c58f1aa3ec24 httplib2-0.9.tar.gz" |