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 D994E139694 for ; Sat, 10 Jun 2017 17:13:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 32CFF21C1E7; Sat, 10 Jun 2017 17:13:43 +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 0C4EE21C1E7 for ; Sat, 10 Jun 2017 17:13:42 +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 2A1F73417EE for ; Sat, 10 Jun 2017 17:13:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C64F0745D for ; Sat, 10 Jun 2017 17:13:40 +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: <1497114768.e77cee6619a9c31c8f3224643b11e70cd58d3d66.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/backports-ssl-match-hostname/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/backports-ssl-match-hostname/backports-ssl-match-hostname-3.5.0.1-r1.ebuild X-VCS-Directories: dev-python/backports-ssl-match-hostname/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: e77cee6619a9c31c8f3224643b11e70cd58d3d66 X-VCS-Branch: master Date: Sat, 10 Jun 2017 17:13:40 +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: 526ee6e6-9c58-40f0-b0f1-772d79b5b7de X-Archives-Hash: 19f6867c7dead968af098c5ae2ad3c78 commit: e77cee6619a9c31c8f3224643b11e70cd58d3d66 Author: Mike Gilbert gentoo org> AuthorDate: Sat Jun 10 17:11:33 2017 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Jun 10 17:12:48 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e77cee66 dev-python/backports-ssl-match-hostname: skip build in install phase This prevents __init__.py from being re-copied from ${S}. Package-Manager: Portage-2.3.6_p7, Repoman-2.3.2_p75 .../backports-ssl-match-hostname-3.5.0.1-r1.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dev-python/backports-ssl-match-hostname/backports-ssl-match-hostname-3.5.0.1-r1.ebuild b/dev-python/backports-ssl-match-hostname/backports-ssl-match-hostname-3.5.0.1-r1.ebuild index fc10bae4dc5..e3884c33c56 100644 --- a/dev-python/backports-ssl-match-hostname/backports-ssl-match-hostname-3.5.0.1-r1.ebuild +++ b/dev-python/backports-ssl-match-hostname/backports-ssl-match-hostname-3.5.0.1-r1.ebuild @@ -31,6 +31,5 @@ python_install_all() { python_install() { # main namespace provided by dev-python/backports rm "${BUILD_DIR}"/lib/backports/__init__.py || die - rm -f backports/__init__.py || die - distutils-r1_python_install + distutils-r1_python_install --skip-build }