From ece08b1f1a2bfa54eeef7ff07dd96d6184d016ef Mon Sep 17 00:00:00 2001 From: Brian Evans Date: Sun, 6 Dec 2015 21:44:43 -0500 Subject: dev-php/pear: Version bump Package-Manager: portage-2.2.26 --- dev-php/pear/pear-1.10.1.ebuild | 42 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 dev-php/pear/pear-1.10.1.ebuild diff --git a/dev-php/pear/pear-1.10.1.ebuild b/dev-php/pear/pear-1.10.1.ebuild new file mode 100644 index 000000000000..ca6e9e5dce27 --- /dev/null +++ b/dev-php/pear/pear-1.10.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" + +DESCRIPTION="PEAR - PHP Extension and Application Repository" +HOMEPAGE="http://pear.php.net/" +SRC_URI="" +LICENSE="MIT" +SLOT="0" +IUSE="" +S="${WORKDIR}" + +DEPEND=">=dev-lang/php-5.4:* + !=dev-php/PEAR-Archive_Tar-1.4.0 + >=dev-php/PEAR-Console_Getopt-1.4.1 + >=dev-php/PEAR-Structures_Graph-1.1.0 + >=dev-php/PEAR-XML_Util-1.3.0" +RDEPEND="${DEPEND}" + +src_install() { + :; +} + +pkg_postinst() { + pear clear-cache + + # 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 pear.symfony-project.com + pear.agavi.org" + + for chan in ${pearchans} ; do + pear channel-discover ${chan} + pear channel-update ${chan} + done +} -- cgit v1.2.3-65-gdbad