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 B348758973 for ; Fri, 22 Jan 2016 19:14:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57D5621C018; 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 B076321C018 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 466B9340A9F 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 6606010BE 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: <1453489994.e64cb2825a6429fcb3e7c760538bcfa3890faa97.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: e64cb2825a6429fcb3e7c760538bcfa3890faa97 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: 75475c7a-bd8c-401b-9d80-83737111d1ec X-Archives-Hash: e3d4a2f8a7382743c7cff7aa13b2ea32 commit: e64cb2825a6429fcb3e7c760538bcfa3890faa97 Author: Michael Orlitzky gentoo org> AuthorDate: Fri Jan 22 19:13:14 2016 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Fri Jan 22 19:13:14 2016 +0000 URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=e64cb282 Rename the "modules" action to "list-modules". The name "list-modules" was always more appropriate; it just took a moment to realize that "-" is valid in bash function names. src/php.eselect.in.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/php.eselect.in.in b/src/php.eselect.in.in index ac05d3a..8f241ce 100644 --- a/src/php.eselect.in.in +++ b/src/php.eselect.in.in @@ -620,12 +620,12 @@ do_cleanup() { done } -## modules action +## list-modules action -describe_modules() { +describe_list-modules() { echo "output a space-separated list of valid modules" } -do_modules() { +do_list-modules() { echo "${MODULES}" }