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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DC6D215800A for ; Mon, 17 Jul 2023 15:29:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2BA28E0864; Mon, 17 Jul 2023 15:29:00 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 084B9E0864 for ; Mon, 17 Jul 2023 15:29:00 +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 EE65A335DA3 for ; Mon, 17 Jul 2023 15:28:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 36175137 for ; Mon, 17 Jul 2023 15:28:57 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1689607556.914e689757465e7c9ba47b5138dda5979ca36224.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/maturin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/maturin/maturin-1.1.0.ebuild X-VCS-Directories: dev-util/maturin/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 914e689757465e7c9ba47b5138dda5979ca36224 X-VCS-Branch: master Date: Mon, 17 Jul 2023 15:28:57 +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: 5a49344d-937f-4568-b25d-1ee639ce3f63 X-Archives-Hash: 7791241d960ec6d60cecae8fe7aefb19 commit: 914e689757465e7c9ba47b5138dda5979ca36224 Author: Ionen Wolkens gentoo org> AuthorDate: Mon Jul 17 15:25:56 2023 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Mon Jul 17 15:25:56 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=914e6897 dev-util/maturin: switch to shell-completion.eclass Signed-off-by: Ionen Wolkens gentoo.org> dev-util/maturin/maturin-1.1.0.ebuild | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/dev-util/maturin/maturin-1.1.0.ebuild b/dev-util/maturin/maturin-1.1.0.ebuild index f2e161817cf4..3b827311f732 100644 --- a/dev-util/maturin/maturin-1.1.0.ebuild +++ b/dev-util/maturin/maturin-1.1.0.ebuild @@ -373,7 +373,7 @@ CRATES_TEST=" windows_x86_64_msvc@0.42.0" DISTUTILS_USE_PEP517=setuptools PYTHON_COMPAT=( pypy3 python3_{10..12} ) -inherit bash-completion-r1 cargo distutils-r1 edo flag-o-matic toolchain-funcs +inherit cargo distutils-r1 edo flag-o-matic shell-completion toolchain-funcs DESCRIPTION="Build and publish crates with pyo3, rust-cpython and cffi bindings" HOMEPAGE="https://www.maturin.rs/" @@ -481,11 +481,7 @@ python_install_all() { if ! tc-is-cross-compiler; then dobashcomp "${T}"/${PN} - - insinto /usr/share/fish/vendor_completions.d - doins "${T}"/${PN}.fish - - insinto /usr/share/zsh/site-functions - doins "${T}"/_${PN} + dofishcomp "${T}"/${PN}.fish + dozshcomp "${T}"/_${PN} fi }