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 C301A1382C5 for ; Fri, 9 Mar 2018 17:59:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C41CFE08A4; Fri, 9 Mar 2018 17:59:11 +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 9DF25E08DD for ; Fri, 9 Mar 2018 17:59:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 8AD13335C09 for ; Fri, 9 Mar 2018 17:59:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C820246 for ; Fri, 9 Mar 2018 17:59:07 +0000 (UTC) From: "Matt Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Thode" Message-ID: <1520618329.93d697e989c9f65af087a79edda9ffabd362f6fa.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/locustio/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/locustio/locustio-0.7.3-r1.ebuild dev-python/locustio/locustio-0.7.3.ebuild X-VCS-Directories: dev-python/locustio/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matt Thode X-VCS-Revision: 93d697e989c9f65af087a79edda9ffabd362f6fa X-VCS-Branch: master Date: Fri, 9 Mar 2018 17:59:07 +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: 08db28f0-2ce2-416d-ba57-5ddc1b71c36a X-Archives-Hash: 162c17c7d122ee610910e672f6f72a2e commit: 93d697e989c9f65af087a79edda9ffabd362f6fa Author: Matthew Thode gentoo org> AuthorDate: Fri Mar 9 17:41:13 2018 +0000 Commit: Matt Thode gentoo org> CommitDate: Fri Mar 9 17:58:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93d697e9 dev-python/locustio: allow usage of renamed msgpack Package-Manager: Portage-2.3.19, Repoman-2.3.6 .../locustio/{locustio-0.7.3.ebuild => locustio-0.7.3-r1.ebuild} | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-python/locustio/locustio-0.7.3.ebuild b/dev-python/locustio/locustio-0.7.3-r1.ebuild similarity index 80% rename from dev-python/locustio/locustio-0.7.3.ebuild rename to dev-python/locustio/locustio-0.7.3-r1.ebuild index 7892ab1e586..4196e40e6d3 100644 --- a/dev-python/locustio/locustio-0.7.3.ebuild +++ b/dev-python/locustio/locustio-0.7.3-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -28,3 +28,9 @@ RDEPEND=">=dev-python/gevent-1.0.1[${PYTHON_USEDEP}] python_test() { esetup.py test } + +python_prepare_all() { + # allow useage of renamed msgpack + sed -i '/^msgpack/d' setup.py || die + distutils-r1_python_prepare_all +}