diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2016-07-19 14:59:13 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2016-07-19 15:06:47 +0200 |
commit | 2f15283e8abdbe7f4415e76375a966830ba2e9c6 (patch) | |
tree | a17144b14e9eaac1f9fec9b8eb6b5128b20f029a /testing/py-protobuf | |
parent | 486229648dde627f827b4be813c9af3315a6910c (diff) | |
download | aports-2f15283e8abdbe7f4415e76375a966830ba2e9c6.tar.bz2 aports-2f15283e8abdbe7f4415e76375a966830ba2e9c6.tar.xz |
testing/py-protobuf: remove workaround for egg-info
protobuf-2.6.1-py2.7.egg-info is not a directory now!?
Diffstat (limited to 'testing/py-protobuf')
-rw-r--r-- | testing/py-protobuf/APKBUILD | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/testing/py-protobuf/APKBUILD b/testing/py-protobuf/APKBUILD index da692d10c0..d99796757e 100644 --- a/testing/py-protobuf/APKBUILD +++ b/testing/py-protobuf/APKBUILD @@ -20,13 +20,7 @@ build() { package() { cd "$builddir" - - python setup.py install --prefix=/usr --root="$pkgdir" || return 1 - - # Workaround for https://github.com/google/protobuf/issues/737. - # The files under protobuf.egg-info lack read permission for "other", - # which causes `python setup.py build` failures for other packages. - chmod o+r "$pkgdir"/usr/lib/python2.7/site-packages/$_pkgname-$pkgver-py2.7.egg-info/* + python setup.py install --prefix=/usr --root="$pkgdir" } md5sums="6bf843912193f70073db7f22e2ea55e2 py-protobuf-2.6.1.tar.gz" |