diff options
author | 2011-06-05 10:04:03 +0000 | |
---|---|---|
committer | 2011-06-05 10:04:03 +0000 | |
commit | 31394c4158099440b9f662fd704ecd559e5be04d (patch) | |
tree | fc8b05cc5449b990ce2e0ebf5692a54b8b6fc454 /dev-php/pear | |
parent | Version bump (diff) | |
download | gentoo-2-31394c4158099440b9f662fd704ecd559e5be04d.tar.gz gentoo-2-31394c4158099440b9f662fd704ecd559e5be04d.tar.bz2 gentoo-2-31394c4158099440b9f662fd704ecd559e5be04d.zip |
Version bump
(Portage version: 2.1.9.49/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.3.ebuild | 41 |
2 files changed, 47 insertions, 1 deletions
diff --git a/dev-php/pear/ChangeLog b/dev-php/pear/ChangeLog index c0e0163b088d..b21292ec472e 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.23 2011/03/07 15:32:18 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/pear/ChangeLog,v 1.24 2011/06/05 10:04:03 olemarkus Exp $ + +*pear-1.9.3 (05 Jun 2011) + + 05 Jun 2011; <olemarkus@gentoo.org> +pear-1.9.3.ebuild: + Version bump 07 Mar 2011; <olemarkus@gentoo.org> -pear-1.9.0.ebuild, -pear-1.9.1.ebuild: Removed older versions diff --git a/dev-php/pear/pear-1.9.3.ebuild b/dev-php/pear/pear-1.9.3.ebuild new file mode 100644 index 000000000000..1c3c18e5cb3c --- /dev/null +++ b/dev-php/pear/pear-1.9.3.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.3.ebuild,v 1.1 2011/06/05 10:04:03 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 +} |