From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 553A0138334 for ; Wed, 18 Sep 2019 16:23:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 90011E097D; Wed, 18 Sep 2019 16:23:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 44E6BE097D for ; Wed, 18 Sep 2019 16:23:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 21CFF34B329 for ; Wed, 18 Sep 2019 16:23:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C4F63785 for ; Wed, 18 Sep 2019 16:23:26 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1568823803.a6e7afbaec56eb08f43682f6381c16b9f1e7198f.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/twisted/files/, dev-python/twisted/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/twisted/files/trial dev-python/twisted/twisted-16.6.0-r3.ebuild dev-python/twisted/twisted-17.1.0-r2.ebuild dev-python/twisted/twisted-17.9.0.ebuild dev-python/twisted/twisted-18.4.0.ebuild dev-python/twisted/twisted-18.7.0.ebuild X-VCS-Directories: dev-python/twisted/files/ dev-python/twisted/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a6e7afbaec56eb08f43682f6381c16b9f1e7198f X-VCS-Branch: master Date: Wed, 18 Sep 2019 16:23:26 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: acbb3484-1405-4803-a95c-7b33c64e3726 X-Archives-Hash: 2d505cf82658f16f8bfd42318e4faf0e commit: a6e7afbaec56eb08f43682f6381c16b9f1e7198f Author: Michał Górny gentoo org> AuthorDate: Wed Sep 18 16:17:04 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Sep 18 16:23:23 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6e7afba dev-python/twisted: Remove +x from files/trial Signed-off-by: Michał Górny gentoo.org> dev-python/twisted/files/trial | 0 dev-python/twisted/twisted-16.6.0-r3.ebuild | 3 ++- dev-python/twisted/twisted-17.1.0-r2.ebuild | 3 ++- dev-python/twisted/twisted-17.9.0.ebuild | 3 ++- dev-python/twisted/twisted-18.4.0.ebuild | 3 ++- dev-python/twisted/twisted-18.7.0.ebuild | 3 ++- 6 files changed, 10 insertions(+), 5 deletions(-) diff --git a/dev-python/twisted/files/trial b/dev-python/twisted/files/trial old mode 100755 new mode 100644 diff --git a/dev-python/twisted/twisted-16.6.0-r3.ebuild b/dev-python/twisted/twisted-16.6.0-r3.ebuild index cc2d554f402..61c95aa34aa 100644 --- a/dev-python/twisted/twisted-16.6.0-r3.ebuild +++ b/dev-python/twisted/twisted-16.6.0-r3.ebuild @@ -112,7 +112,8 @@ python_test() { # workaround for the eclass not installing the entry points # in the test environment. copy the old 16.3.2 start script # to run the tests with - cp "${FILESDIR}"/trial "${TEST_DIR}" + cp "${FILESDIR}"/trial "${TEST_DIR}" || die + chmod +x "${TEST_DIR}"/trial || die pushd "${TEST_DIR}" > /dev/null || die diff --git a/dev-python/twisted/twisted-17.1.0-r2.ebuild b/dev-python/twisted/twisted-17.1.0-r2.ebuild index 7b72031402e..2c5297195b2 100644 --- a/dev-python/twisted/twisted-17.1.0-r2.ebuild +++ b/dev-python/twisted/twisted-17.1.0-r2.ebuild @@ -113,7 +113,8 @@ python_test() { # workaround for the eclass not installing the entry points # in the test environment. copy the old 16.3.2 start script # to run the tests with - cp "${FILESDIR}"/trial "${TEST_DIR}" + cp "${FILESDIR}"/trial "${TEST_DIR}" || die + chmod +x "${TEST_DIR}"/trial || die pushd "${TEST_DIR}" > /dev/null || die diff --git a/dev-python/twisted/twisted-17.9.0.ebuild b/dev-python/twisted/twisted-17.9.0.ebuild index d9ab3a98e0b..2af9dc59009 100644 --- a/dev-python/twisted/twisted-17.9.0.ebuild +++ b/dev-python/twisted/twisted-17.9.0.ebuild @@ -120,7 +120,8 @@ python_test() { # workaround for the eclass not installing the entry points # in the test environment. copy the old 16.3.2 start script # to run the tests with - cp "${FILESDIR}"/trial "${TEST_DIR}" + cp "${FILESDIR}"/trial "${TEST_DIR}" || die + chmod +x "${TEST_DIR}"/trial || die pushd "${TEST_DIR}" > /dev/null || die diff --git a/dev-python/twisted/twisted-18.4.0.ebuild b/dev-python/twisted/twisted-18.4.0.ebuild index 05bc6ecafa7..62428e4db22 100644 --- a/dev-python/twisted/twisted-18.4.0.ebuild +++ b/dev-python/twisted/twisted-18.4.0.ebuild @@ -119,7 +119,8 @@ python_test() { # workaround for the eclass not installing the entry points # in the test environment. copy the old 16.3.2 start script # to run the tests with - cp "${FILESDIR}"/trial "${TEST_DIR}" + cp "${FILESDIR}"/trial "${TEST_DIR}" || die + chmod +x "${TEST_DIR}"/trial || die pushd "${TEST_DIR}" > /dev/null || die diff --git a/dev-python/twisted/twisted-18.7.0.ebuild b/dev-python/twisted/twisted-18.7.0.ebuild index a3d79b03733..9b927dd62be 100644 --- a/dev-python/twisted/twisted-18.7.0.ebuild +++ b/dev-python/twisted/twisted-18.7.0.ebuild @@ -121,7 +121,8 @@ python_test() { # workaround for the eclass not installing the entry points # in the test environment. copy the old 16.3.2 start script # to run the tests with - cp "${FILESDIR}"/trial "${TEST_DIR}" + cp "${FILESDIR}"/trial "${TEST_DIR}" || die + chmod +x "${TEST_DIR}"/trial || die pushd "${TEST_DIR}" > /dev/null || die