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 1EECD13829C for ; Thu, 9 Jun 2016 17:31:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F28E614209; Thu, 9 Jun 2016 17:31:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7F16014209 for ; Thu, 9 Jun 2016 17:31:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2149834092D for ; Thu, 9 Jun 2016 17:31:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F82B95D for ; Thu, 9 Jun 2016 17:31:31 +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: <1465493432.ddefbab8715efe37c4ac708e1f6a25cf7649e460.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/deluge/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/deluge/deluge-1.3.12-r3.ebuild net-p2p/deluge/deluge-1.3.12.ebuild net-p2p/deluge/deluge-9999.ebuild X-VCS-Directories: net-p2p/deluge/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: ddefbab8715efe37c4ac708e1f6a25cf7649e460 X-VCS-Branch: master Date: Thu, 9 Jun 2016 17:31:31 +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: 566d8aa3-2be9-4ff2-bee4-497b7df5fe93 X-Archives-Hash: d350a58226c1aafb7c73391b2cca0c75 commit: ddefbab8715efe37c4ac708e1f6a25cf7649e460 Author: Mike Gilbert gentoo org> AuthorDate: Thu Jun 9 17:30:19 2016 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Thu Jun 9 17:30:32 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddefbab8 net-p2p/deluge: Override esetup.py Resolves a build failure triggered by a change in distutils-r1.eclass. Bug: https://bugs.gentoo.org/585454 Package-Manager: portage-2.3.0_rc1_p20 net-p2p/deluge/deluge-1.3.12-r3.ebuild | 6 ++++-- net-p2p/deluge/deluge-1.3.12.ebuild | 8 +++++--- net-p2p/deluge/deluge-9999.ebuild | 6 ++++-- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/net-p2p/deluge/deluge-1.3.12-r3.ebuild b/net-p2p/deluge/deluge-1.3.12-r3.ebuild index 1327cd2..92b0c53 100644 --- a/net-p2p/deluge/deluge-1.3.12-r3.ebuild +++ b/net-p2p/deluge/deluge-1.3.12-r3.ebuild @@ -56,11 +56,13 @@ python_prepare_all() { distutils-r1_python_prepare_all } -_distutils-r1_create_setup_cfg() { +esetup.py() { # bug 531370: deluge has its own plugin system. No need to relocate its egg info files. # Override this call from the distutils-r1 eclass. # This does not respect the distutils-r1 API. DONOT copy this example. - : + set -- "${PYTHON}" setup.py "$@" + echo "$@" + "$@" || die } python_install_all() { diff --git a/net-p2p/deluge/deluge-1.3.12.ebuild b/net-p2p/deluge/deluge-1.3.12.ebuild index c0fec62..221f13c 100644 --- a/net-p2p/deluge/deluge-1.3.12.ebuild +++ b/net-p2p/deluge/deluge-1.3.12.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -55,11 +55,13 @@ python_prepare_all() { distutils-r1_python_prepare_all } -_distutils-r1_create_setup_cfg() { +esetup.py() { # bug 531370: deluge has its own plugin system. No need to relocate its egg info files. # Override this call from the distutils-r1 eclass. # This does not respect the distutils-r1 API. DONOT copy this example. - : + set -- "${PYTHON}" setup.py "$@" + echo "$@" + "$@" || die } python_install_all() { diff --git a/net-p2p/deluge/deluge-9999.ebuild b/net-p2p/deluge/deluge-9999.ebuild index 579b78e..e11f9c0 100644 --- a/net-p2p/deluge/deluge-9999.ebuild +++ b/net-p2p/deluge/deluge-9999.ebuild @@ -56,11 +56,13 @@ python_prepare_all() { distutils-r1_python_prepare_all } -_distutils-r1_create_setup_cfg() { +esetup.py() { # bug 531370: deluge has its own plugin system. No need to relocate its egg info files. # Override this call from the distutils-r1 eclass. # This does not respect the distutils-r1 API. DONOT copy this example. - : + set -- "${PYTHON}" setup.py "$@" + echo "$@" + "$@" || die } python_install_all() {