Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php5/phpunit: ChangeLog phpunit-3.4.6.ebuild
Date: Fri, 01 Jan 2010 20:56:09
Message-Id: E1NQoXX-0003Zf-9N@stork.gentoo.org
1 yngwin 10/01/01 20:56:07
2
3 Modified: ChangeLog
4 Added: phpunit-3.4.6.ebuild
5 Log:
6 Version bump, fixes bug 254241.
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.22 dev-php5/phpunit/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/phpunit/ChangeLog?rev=1.22&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/phpunit/ChangeLog?rev=1.22&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/phpunit/ChangeLog?r1=1.21&r2=1.22
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-php5/phpunit/ChangeLog,v
19 retrieving revision 1.21
20 retrieving revision 1.22
21 diff -u -r1.21 -r1.22
22 --- ChangeLog 18 Oct 2008 20:30:15 -0000 1.21
23 +++ ChangeLog 1 Jan 2010 20:56:06 -0000 1.22
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-php5/phpunit
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/phpunit/ChangeLog,v 1.21 2008/10/18 20:30:15 hoffie Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-php5/phpunit/ChangeLog,v 1.22 2010/01/01 20:56:06 yngwin Exp $
30 +
31 +*phpunit-3.4.6 (01 Jan 2010)
32 +
33 + 01 Jan 2010; Ben de Groot <yngwin@g.o> +phpunit-3.4.6.ebuild:
34 + Version bump, fixes bug 254241.
35
36 *phpunit-3.3.1 (18 Oct 2008)
37
38
39
40
41 1.1 dev-php5/phpunit/phpunit-3.4.6.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/phpunit/phpunit-3.4.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-php5/phpunit/phpunit-3.4.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: phpunit-3.4.6.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-php5/phpunit/phpunit-3.4.6.ebuild,v 1.1 2010/01/01 20:56:06 yngwin Exp $
51
52 inherit php-pear-lib-r1
53
54 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~sparc ~x86"
55
56 DESCRIPTION="Unit testing framework for PHP5"
57 HOMEPAGE="http://www.phpunit.de/"
58 SRC_URI="http://pear.phpunit.de/get/PHPUnit-${PV}.tgz"
59 LICENSE="BSD"
60 SLOT="0"
61 IUSE="minimal"
62
63 DEPEND="!dev-php4/phpunit
64 >=dev-php/PEAR-PEAR-1.8.1"
65 RDEPEND="${DEPEND}
66 !minimal? ( >=dev-php5/xdebug-2.0.5
67 >=dev-php/PEAR-Image_GraphViz-1.2.1
68 >=dev-php/PEAR-Log-1.8.7-r1
69 >=dev-php/PEAR-Testing_Selenium-0.2.0 )"
70
71 S="${WORKDIR}/PHPUnit-${PV}"
72
73 need_php_by_category
74
75 pkg_setup() {
76 require_php_with_use pcre reflection spl xml tokenizer
77 }
78
79 pkg_postinst() {
80 has_php
81 elog "${PN} can optionally use json, pdo-sqlite and pdo-mysql features."
82 elog "If you want those, emerge ${PHP_PKG} with USE=\"json pdo sqlite mysql\"."
83 }