Gentoo Archives: gentoo-commits

From: "Steve Dibb (beandog)" <beandog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/pear: pear-1.9.0.ebuild ChangeLog
Date: Mon, 05 Oct 2009 18:25:36
Message-Id: E1MusFa-0004xI-B2@stork.gentoo.org
1 beandog 09/10/05 18:25:34
2
3 Modified: ChangeLog
4 Added: pear-1.9.0.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc42/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.2 dev-php/pear/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/pear/ChangeLog?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/pear/ChangeLog?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/pear/ChangeLog?r1=1.1&r2=1.2
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-php/pear/ChangeLog,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- ChangeLog 23 Sep 2009 02:53:37 -0000 1.1
23 +++ ChangeLog 5 Oct 2009 18:25:33 -0000 1.2
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-php/pear
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-php/pear/ChangeLog,v 1.1 2009/09/23 02:53:37 beandog Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pear/ChangeLog,v 1.2 2009/10/05 18:25:33 beandog Exp $
29 +
30 +*pear-1.9.0 (05 Oct 2009)
31 +
32 + 05 Oct 2009; Steve Dibb <beandog@g.o> +pear-1.9.0.ebuild:
33 + Version bump
34
35 *pear-1.8.1 (23 Sep 2009)
36
37
38
39
40 1.1 dev-php/pear/pear-1.9.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/pear/pear-1.9.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php/pear/pear-1.9.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: pear-1.9.0.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-php/pear/pear-1.9.0.ebuild,v 1.1 2009/10/05 18:25:33 beandog Exp $
50
51 inherit depend.php
52
53 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
54
55 DESCRIPTION="PEAR - PHP Extension and Application Repository"
56 HOMEPAGE="http://pear.php.net/"
57 SRC_URI=""
58 LICENSE="MIT"
59 SLOT="0"
60 IUSE=""
61
62 DEPEND="!<dev-php/PEAR-PEAR-1.8.1
63 ~dev-php/PEAR-PEAR-${PV}
64 >=dev-php/PEAR-Archive_Tar-1.3.3
65 >=dev-php/PEAR-Console_Getopt-1.2.3
66 >=dev-php/PEAR-Structures_Graph-1.0.2
67 >=dev-php/PEAR-XML_Util-1.2.1"
68
69 src_install() {
70 :;
71 }
72
73 pkg_postinst() {
74 pear clear-cache
75
76 # Update PEAR/PECL channels as needed, add new ones to the list if needed
77 elog "Updating PEAR/PECL channels"
78 local pearchans="pear.php.net pecl.php.net components.ez.no pear.phpdb.org
79 pear.phing.info pear.symfony-project.com pear.phpunit.de
80 pear.php-baustelle.de pear.phpontrax.com pear.agavi.org"
81
82 for chan in ${pearchans} ; do
83 pear channel-discover ${chan}
84 pear channel-update ${chan}
85 done
86 }