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 5C5CC139694 for ; Mon, 20 Feb 2017 20:53:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37886E0DCE; Mon, 20 Feb 2017 20:53:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1538BE0DCE for ; Mon, 20 Feb 2017 20:53:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E7698340EE8 for ; Mon, 20 Feb 2017 20:53:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A1C064EC6 for ; Mon, 20 Feb 2017 20:53:47 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1487624013.8f1cb590dc220cd2ae8ac093d1110e9aaf5dfb9f.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-PEAR/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/PEAR-PEAR/PEAR-PEAR-1.10.1-r1.ebuild X-VCS-Directories: dev-php/PEAR-PEAR/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 8f1cb590dc220cd2ae8ac093d1110e9aaf5dfb9f X-VCS-Branch: master Date: Mon, 20 Feb 2017 20:53:47 +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: 3418aece-9548-47a7-9617-10ea7b83b565 X-Archives-Hash: 1a6f638bdcd2bb361d8f8280efd349ca commit: 8f1cb590dc220cd2ae8ac093d1110e9aaf5dfb9f Author: Brian Evans gentoo org> AuthorDate: Mon Feb 20 20:53:33 2017 +0000 Commit: Brian Evans gentoo org> CommitDate: Mon Feb 20 20:53:33 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f1cb590 dev-php/PEAR-PEAR: Remove dead channel from pkg_postinst Expand the error message to include which channel it bails on as well Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-php/PEAR-PEAR/PEAR-PEAR-1.10.1-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-php/PEAR-PEAR/PEAR-PEAR-1.10.1-r1.ebuild b/dev-php/PEAR-PEAR/PEAR-PEAR-1.10.1-r1.ebuild index 5df3f9d16a..78c112e6a3 100644 --- a/dev-php/PEAR-PEAR/PEAR-PEAR-1.10.1-r1.ebuild +++ b/dev-php/PEAR-PEAR/PEAR-PEAR-1.10.1-r1.ebuild @@ -140,12 +140,12 @@ pkg_postinst() { # Update PEAR/PECL channels as needed, add new ones to the list if needed elog "Updating PEAR/PECL channels" local pearchans="pear.php.net pecl.php.net pear.phing.info " - pearchans+="pear.symfony-project.com pear.agavi.org" + pearchans+="pear.symfony-project.com" for chan in ${pearchans} ; do # The first command may fail if, for example, the channels have # already been initialized. pear channel-discover ${chan} - pear channel-update ${chan} || die "failed to update channels" + pear channel-update ${chan} || die "failed to update channels: ${chan}" done }