mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-25 08:58:27 -07:00
dev-python/google-apputils: Fix permissions on unpacked files
Bug: https://bugs.gentoo.org/561266 Package-Manager: portage-2.2.22_p3
This commit is contained in:
@@ -25,6 +25,12 @@ DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
dev-python/mox[${PYTHON_USEDEP}] )"
|
||||
# version borders needed are already confluent with versions in the tree
|
||||
|
||||
src_unpack() {
|
||||
default
|
||||
find ${P} -type d -exec chmod 0755 {} + || die
|
||||
find ${P} -type f -exec chmod 0644 {} + || die
|
||||
}
|
||||
|
||||
python_prepare_all() {
|
||||
# https://code.google.com/p/google-apputils-python/source/detail?r=12
|
||||
# This version bordering is long out of date and wrong since end of March 2012!
|
||||
@@ -24,6 +24,12 @@ RDEPEND="
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? ( ${RDEPEND} dev-python/mox[${PYTHON_USEDEP}] )"
|
||||
|
||||
src_unpack() {
|
||||
default
|
||||
find ${P} -type d -exec chmod 0755 {} + || die
|
||||
find ${P} -type f -exec chmod 0644 {} + || die
|
||||
}
|
||||
|
||||
python_test() {
|
||||
# These yield 2 fails which are in fact expected errors run from a shell script!
|
||||
# They seemingly have no immediate mechanism to exit 0 in an expected fail style.
|
||||
Reference in New Issue
Block a user