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 5EC5213881D for ; Sun, 27 Sep 2015 12:50:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 47FCE21C010; Sun, 27 Sep 2015 12:50:10 +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 E220721C010 for ; Sun, 27 Sep 2015 12:50:09 +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 C6B1D3409EC for ; Sun, 27 Sep 2015 12:50:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC90A1F1 for ; Sun, 27 Sep 2015 12:50:05 +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: <1443358152.7d482d7eae4fd3b807a7a4a4ebbf09cb9e25700d.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.0.ebuild dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild dev-python/google-apputils/google-apputils-0.4.2.ebuild X-VCS-Directories: dev-python/google-apputils/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 7d482d7eae4fd3b807a7a4a4ebbf09cb9e25700d X-VCS-Branch: master Date: Sun, 27 Sep 2015 12:50:05 +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: fb162425-839a-47ba-a9ad-055c1bff3762 X-Archives-Hash: 1b6885f0a850c3ad0e1164785fcac20b commit: 7d482d7eae4fd3b807a7a4a4ebbf09cb9e25700d Author: Mike Gilbert gentoo org> AuthorDate: Sun Sep 27 12:49:12 2015 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sun Sep 27 12:49:12 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d482d7e dev-python/google-apputils: Fix permissions on unpacked files Bug: https://bugs.gentoo.org/561266 Package-Manager: portage-2.2.22_p3 ...google-apputils-0.4.0.ebuild => google-apputils-0.4.0-r1.ebuild} | 6 ++++++ ...google-apputils-0.4.2.ebuild => google-apputils-0.4.2-r1.ebuild} | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/dev-python/google-apputils/google-apputils-0.4.0.ebuild b/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild similarity index 91% rename from dev-python/google-apputils/google-apputils-0.4.0.ebuild rename to dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild index a285ff3..4ed6025 100644 --- a/dev-python/google-apputils/google-apputils-0.4.0.ebuild +++ b/dev-python/google-apputils/google-apputils-0.4.0-r1.ebuild @@ -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! diff --git a/dev-python/google-apputils/google-apputils-0.4.2.ebuild b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild similarity index 89% rename from dev-python/google-apputils/google-apputils-0.4.2.ebuild rename to dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild index 055a248..613b4dc 100644 --- a/dev-python/google-apputils/google-apputils-0.4.2.ebuild +++ b/dev-python/google-apputils/google-apputils-0.4.2-r1.ebuild @@ -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.