From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 60F761582EF for ; Mon, 10 Mar 2025 10:03:36 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 4C0A8343127 for ; Mon, 10 Mar 2025 10:03:36 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id A5DA611037D; Mon, 10 Mar 2025 10:03:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id A125611037D for ; Mon, 10 Mar 2025 10:03:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 54A05343120 for ; Mon, 10 Mar 2025 10:03:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B21E228B3 for ; Mon, 10 Mar 2025 10:03:30 +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: <1741601007.3af1a248a5cd753ea6ae9cca95a870f70fbf6cfa.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pip/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pip/pip-25.0.1-r1.ebuild X-VCS-Directories: dev-python/pip/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3af1a248a5cd753ea6ae9cca95a870f70fbf6cfa X-VCS-Branch: master Date: Mon, 10 Mar 2025 10:03:30 +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: f8d1379b-63a5-4176-9e89-98c7c5c5e583 X-Archives-Hash: 15ae6850f0aa078a488d3c2ce2d85272 commit: 3af1a248a5cd753ea6ae9cca95a870f70fbf6cfa Author: Michał Górny gentoo org> AuthorDate: Mon Mar 10 09:58:11 2025 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Mar 10 10:03:27 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3af1a248 dev-python/pip: Use shell-completion.eclass Signed-off-by: Michał Górny gentoo.org> dev-python/pip/pip-25.0.1-r1.ebuild | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/dev-python/pip/pip-25.0.1-r1.ebuild b/dev-python/pip/pip-25.0.1-r1.ebuild index d34b141431e2..63c7a8d8d974 100644 --- a/dev-python/pip/pip-25.0.1-r1.ebuild +++ b/dev-python/pip/pip-25.0.1-r1.ebuild @@ -10,7 +10,7 @@ PYTHON_TESTED=( pypy3 pypy3_11 python3_{10..13} ) PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" ) PYTHON_REQ_USE="ssl(+),threads(+)" -inherit bash-completion-r1 distutils-r1 +inherit distutils-r1 shell-completion DESCRIPTION="The PyPA recommended tool for installing Python packages" HOMEPAGE=" @@ -171,7 +171,5 @@ python_install_all() { distutils-r1_python_install_all newbashcomp completion.bash pip - - insinto /usr/share/zsh/site-functions - newins completion.zsh _pip + newzshcomp completion.zsh _pip }