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 DF9EB58974 for ; Fri, 22 Jan 2016 19:14:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3ED9E21C00E; Fri, 22 Jan 2016 19:14:51 +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 8C47F21C00C for ; Fri, 22 Jan 2016 19:14:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 36CBA340A9D for ; Fri, 22 Jan 2016 19:14:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42DEA10AF for ; Fri, 22 Jan 2016 19:14:45 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1453489301.caac4444f99bcef4161a416af8d1f678314a3e80.mjo@gentoo> Subject: [gentoo-commits] proj/eselect-php:master commit in: src/ X-VCS-Repository: proj/eselect-php X-VCS-Files: src/php.eselect.in.in X-VCS-Directories: src/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: caac4444f99bcef4161a416af8d1f678314a3e80 X-VCS-Branch: master Date: Fri, 22 Jan 2016 19:14:45 +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: b35aee6e-4b95-4ebb-b7b9-a0dfe81b2e39 X-Archives-Hash: 59430c9a7addc8143b9ac55bd7f53824 commit: caac4444f99bcef4161a416af8d1f678314a3e80 Author: Michael Orlitzky gentoo org> AuthorDate: Fri Jan 22 19:01:41 2016 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Fri Jan 22 19:01:41 2016 +0000 URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=caac4444 Add a "modules" action to list all valid modules (requested in bug 491866). Gentoo-Bug: 491866 src/php.eselect.in.in | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/php.eselect.in.in b/src/php.eselect.in.in index db7a96f..2467ce3 100644 --- a/src/php.eselect.in.in +++ b/src/php.eselect.in.in @@ -619,3 +619,13 @@ do_cleanup() { fi done } + +## modules action + +describe_modules() { + echo "List all valid modules, separated by spaces" +} + +do_modules() { + echo "${MODULES}" +}