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 A162B1388C3 for ; Mon, 28 Dec 2015 14:12:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D03E121C00F; Mon, 28 Dec 2015 14:12:16 +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 33AF821C00F for ; Mon, 28 Dec 2015 14:12:16 +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 0EA5533D3C7 for ; Mon, 28 Dec 2015 14:12:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 39CBEE5F for ; Mon, 28 Dec 2015 13:34:32 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1451309668.b497e7cefe6db8f335e5d15dbca2d2da4b1adde2.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pip/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pip/pip-7.1.2.ebuild X-VCS-Directories: dev-python/pip/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: b497e7cefe6db8f335e5d15dbca2d2da4b1adde2 X-VCS-Branch: master Date: Mon, 28 Dec 2015 13:34:32 +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: 02dd1304-ece3-48c8-ba0f-5aea07266f1c X-Archives-Hash: 96ac46c7bf50f63ff5f3c1f1a87fff98 commit: b497e7cefe6db8f335e5d15dbca2d2da4b1adde2 Author: Justin Lecher gentoo org> AuthorDate: Mon Dec 28 10:10:10 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Dec 28 13:34:28 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b497e7ce dev-python/pip: Update shell completion generation Package-Manager: portage-2.2.26 Signed-off-by: Justin Lecher gentoo.org> dev-python/pip/pip-7.1.2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/pip/pip-7.1.2.ebuild b/dev-python/pip/pip-7.1.2.ebuild index 7f0d706..b281787 100644 --- a/dev-python/pip/pip-7.1.2.ebuild +++ b/dev-python/pip/pip-7.1.2.ebuild @@ -58,10 +58,10 @@ python_install_all() { COMPLETION="${T}"/completion.tmp - "${PYTHON}" pip/__init__.py completion --bash > "${COMPLETION}" || die + "${PYTHON}" -m pip completion --bash > "${COMPLETION}" || die newbashcomp "${COMPLETION}" ${PN} - "${PYTHON}" pip/__init__.py completion --zsh > "${COMPLETION}" || die + "${PYTHON}" -m pip completion --zsh > "${COMPLETION}" || die insinto /usr/share/zsh/site-functions newins "${COMPLETION}" _pip }