diff options
author | 2011-11-02 13:18:08 +0000 | |
---|---|---|
committer | 2011-11-02 13:18:08 +0000 | |
commit | 7e28b2d35e377c3c8e6e95e01c12ef9dbc75f842 (patch) | |
tree | 34e7324ad74e39f2d45827916e26a94c19a41496 /dev-php/pear | |
parent | Version bump. Removed old (diff) | |
download | gentoo-2-7e28b2d35e377c3c8e6e95e01c12ef9dbc75f842.tar.gz gentoo-2-7e28b2d35e377c3c8e6e95e01c12ef9dbc75f842.tar.bz2 gentoo-2-7e28b2d35e377c3c8e6e95e01c12ef9dbc75f842.zip |
Version bump
(Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
Diffstat (limited to 'dev-php/pear')
-rw-r--r-- | dev-php/pear/ChangeLog | 7 | ||||
-rw-r--r-- | dev-php/pear/pear-1.9.4.ebuild | 41 |
2 files changed, 47 insertions, 1 deletions
diff --git a/dev-php/pear/ChangeLog b/dev-php/pear/ChangeLog index c4e5c0c97837..f9195446a153 100644 --- a/dev-php/pear/ChangeLog +++ b/dev-php/pear/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-php/pear # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/pear/ChangeLog,v 1.30 2011/09/07 15:24:34 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/pear/ChangeLog,v 1.31 2011/11/02 13:18:08 olemarkus Exp $ + +*pear-1.9.4 (02 Nov 2011) + + 02 Nov 2011; Ole Markus With <olemarkus@gentoo.org> +pear-1.9.4.ebuild: + Version bump 07 Sep 2011; Ole Markus With <olemarkus@gentoo.org> -pear-1.9.2.ebuild: Removed older versions diff --git a/dev-php/pear/pear-1.9.4.ebuild b/dev-php/pear/pear-1.9.4.ebuild new file mode 100644 index 000000000000..38894faec4e6 --- /dev/null +++ b/dev-php/pear/pear-1.9.4.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pear/pear-1.9.4.ebuild,v 1.1 2011/11/02 13:18:08 olemarkus Exp $ + +inherit depend.php + +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="" + +DEPEND="!<dev-php/PEAR-PEAR-1.8.1 + ~dev-php/PEAR-PEAR-${PV} + >=dev-php/PEAR-Archive_Tar-1.3.7 + >=dev-php/PEAR-Console_Getopt-1.2.3 + >=dev-php/PEAR-Structures_Graph-1.0.2 + >=dev-php/PEAR-XML_Util-1.2.1" +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 components.ez.no + pear.propelorm.org pear.phing.info pear.symfony-project.com pear.phpunit.de + pear.php-baustelle.de pear.phpontrax.com pear.agavi.org" + + for chan in ${pearchans} ; do + pear channel-discover ${chan} + pear channel-update ${chan} + done +} |