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.2.ebuild
Date: Mon, 28 Feb 2011 19:25:05
Message-Id: 20110228192454.AC30620054@flycatcher.gentoo.org
1 olemarkus 11/02/28 19:24:54
2
3 Modified: ChangeLog
4 Added: pear-1.9.2.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.9.41/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.15 dev-php/pear/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pear/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pear/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pear/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-php/pear/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 10 Jan 2011 18:08:47 -0000 1.14
24 +++ ChangeLog 28 Feb 2011 19:24:54 -0000 1.15
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.14 2011/01/10 18:08:47 xarthisius Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pear/ChangeLog,v 1.15 2011/02/28 19:24:54 olemarkus Exp $
30 +
31 +*pear-1.9.2 (28 Feb 2011)
32 +
33 + 28 Feb 2011; <olemarkus@g.o> +pear-1.9.2.ebuild:
34 + Version bump
35
36 10 Jan 2011; Kacper Kowalik <xarthisius@g.o> pear-1.9.1.ebuild:
37 ppc stable wrt #294256
38
39
40
41 1.1 dev-php/pear/pear-1.9.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pear/pear-1.9.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/pear/pear-1.9.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pear-1.9.2.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.2.ebuild,v 1.1 2011/02/28 19:24:54 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
70 src_install() {
71 :;
72 }
73
74 pkg_postinst() {
75 pear clear-cache
76
77 # Update PEAR/PECL channels as needed, add new ones to the list if needed
78 elog "Updating PEAR/PECL channels"
79 local pearchans="pear.php.net pecl.php.net components.ez.no
80 pear.propelorm.org pear.phing.info pear.symfony-project.com pear.phpunit.de
81 pear.php-baustelle.de pear.phpontrax.com pear.agavi.org"
82
83 for chan in ${pearchans} ; do
84 pear channel-discover ${chan}
85 pear channel-update ${chan}
86 done
87 }