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 79C4D1388BF for ; Sat, 9 Jan 2016 02:24:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3960AE0814; Sat, 9 Jan 2016 02:24:09 +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 79EEDE0814 for ; Sat, 9 Jan 2016 02:24:08 +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 718E5340A13 for ; Sat, 9 Jan 2016 02:24:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7719FD01 for ; Sat, 9 Jan 2016 02:24:05 +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: <1452304890.5ebfa5ec899c6a0827e4f60c06cdadeb2e2c2dd9.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 X-VCS-Directories: src/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 5ebfa5ec899c6a0827e4f60c06cdadeb2e2c2dd9 X-VCS-Branch: master Date: Sat, 9 Jan 2016 02:24:05 +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: 26ee0a23-696c-4639-9e70-266dca70fbae X-Archives-Hash: e6443e11f715c34238bfc53da46e68f0 commit: 5ebfa5ec899c6a0827e4f60c06cdadeb2e2c2dd9 Author: Michael Orlitzky gentoo org> AuthorDate: Sat Jan 9 02:01:30 2016 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sat Jan 9 02:01:30 2016 +0000 URL: https://gitweb.gentoo.org/proj/eselect-php.git/commit/?id=5ebfa5ec Rename "phpdbg" to "dbg" for consistency and to fix its show action. src/php.eselect.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/php.eselect.in b/src/php.eselect.in index d9c44f7..efd52c2 100644 --- a/src/php.eselect.in +++ b/src/php.eselect.in @@ -6,7 +6,7 @@ inherit config multilib DESCRIPTION="Manage php installations" MAINTAINER="php-bugs@gentoo.org" -MODULES="cli apache2 fpm cgi phpdbg" +MODULES="cli apache2 fpm cgi dbg" # # Output a list of link names (not full paths) belonging to the given @@ -428,7 +428,7 @@ list_fpm() { list_sapi fpm } -list_phpdbg() { +list_dbg() { list_sapi dbg } @@ -498,7 +498,7 @@ set_cgi() { set_sapi cgi "${1}" } -set_phpdbg() { +set_dbg() { set_sapi dbg "${1}" }