From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 64BA41385BF for ; Wed, 30 Sep 2015 16:28:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F510E080D; Wed, 30 Sep 2015 16:28:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E91FCE080D for ; Wed, 30 Sep 2015 16:28:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D5A0C34104D for ; Wed, 30 Sep 2015 16:28:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CAD6E238 for ; Wed, 30 Sep 2015 16:28:08 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1443630483.e050af8811e367c50e810b35aa7139fcdabdcd9c.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/google-apputils/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild X-VCS-Directories: dev-python/google-apputils/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: e050af8811e367c50e810b35aa7139fcdabdcd9c X-VCS-Branch: master Date: Wed, 30 Sep 2015 16:28:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 13cf33e4-cab3-4357-abfe-482a6ea24c1d X-Archives-Hash: ab1ef17e398bdf117a2654289ff53317 commit: e050af8811e367c50e810b35aa7139fcdabdcd9c Author: Mike Gilbert gentoo org> AuthorDate: Wed Sep 30 16:26:43 2015 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Wed Sep 30 16:28:03 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e050af88 dev-python/google-apputils: Simplify permissions fix Package-Manager: portage-2.2.22_p3 dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild | 3 +-- dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild b/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild index 4ed6025..7b78e53 100644 --- a/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild +++ b/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild @@ -27,8 +27,7 @@ DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] src_unpack() { default - find ${P} -type d -exec chmod 0755 {} + || die - find ${P} -type f -exec chmod 0644 {} + || die + chmod -R a+rX,u+w,g-w,o-w ${P} || die } python_prepare_all() { diff --git a/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild index 613b4dc..1e38908 100644 --- a/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild +++ b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild @@ -26,8 +26,7 @@ DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] src_unpack() { default - find ${P} -type d -exec chmod 0755 {} + || die - find ${P} -type f -exec chmod 0644 {} + || die + chmod -R a+rX,u+w,g-w,o-w ${P} || die } python_test() {