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 4ED24138350 for ; Wed, 19 Feb 2020 17:53:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E693E0A9C; Wed, 19 Feb 2020 17:53:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1FBB5E0A9C for ; Wed, 19 Feb 2020 17:53:41 +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 C9D0034EDDA for ; Wed, 19 Feb 2020 17:53:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 388B3116 for ; Wed, 19 Feb 2020 17:53:37 +0000 (UTC) From: "Vadim Misbakh-Soloviov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Vadim Misbakh-Soloviov" Message-ID: <1582134398.d58e7b56793b1bf5efce066d9a6c549b8d495700.mva@gentoo> Subject: [gentoo-commits] proj/zsh-completion:master commit in: src/ X-VCS-Repository: proj/zsh-completion X-VCS-Files: src/_portage X-VCS-Directories: src/ X-VCS-Committer: mva X-VCS-Committer-Name: Vadim Misbakh-Soloviov X-VCS-Revision: d58e7b56793b1bf5efce066d9a6c549b8d495700 X-VCS-Branch: master Date: Wed, 19 Feb 2020 17:53:37 +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: b4380ffe-404f-47d9-9083-8727c11d2f0c X-Archives-Hash: 5fd7fbf2b3e20c8dd72de0f76d025046 commit: d58e7b56793b1bf5efce066d9a6c549b8d495700 Author: otakuto gmail com> AuthorDate: Mon Nov 13 07:12:08 2017 +0000 Commit: Vadim Misbakh-Soloviov gentoo org> CommitDate: Wed Feb 19 17:46:38 2020 +0000 URL: https://gitweb.gentoo.org/proj/zsh-completion.git/commit/?id=d58e7b56 _portage: add configure and prepare,test completions Signed-off-by: Vadim A. Misbakh-Soloviov mva.name> src/_portage | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/_portage b/src/_portage index ed2ade5..1c43ac4 100644 --- a/src/_portage +++ b/src/_portage @@ -11,7 +11,10 @@ _ebuild () { 'fetch[Fetch all necessary files]' \ 'digest[Creates a digest file for the package]' \ 'unpack[Extracts the sources to a subdirectory in the build directory]' \ + 'prepare[Prepares the extracted sources by running the src_prepare()]' \ + 'configure[Configures the extracted sources by running the src_configure()]' \ 'compile[Compiles the extracted sources by running the src_compile()]' \ + 'test[Runs package-specific test cases to verify that everything was built properly]' \ 'preinst[Run specific actions that need to be done before installation]' \ 'install[Installs the package to the temporary install directory]' \ 'postinst[Run specific actions that need to be done after installation]' \