Gentoo Archives: gentoo-commits

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