Gentoo Archives: gentoo-commits

From: "Matti Bickel (mabi)" <mabi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php5/phpunit: ChangeLog phpunit-3.4.13.ebuild
Date: Sat, 29 May 2010 18:30:47
Message-Id: 20100529183040.E6CAC2CF37@corvid.gentoo.org
1 mabi 10/05/29 18:30:40
2
3 Modified: ChangeLog
4 Added: phpunit-3.4.13.ebuild
5 Log:
6 version bump
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.28 dev-php5/phpunit/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpunit/ChangeLog?rev=1.28&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpunit/ChangeLog?rev=1.28&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpunit/ChangeLog?r1=1.27&r2=1.28
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-php5/phpunit/ChangeLog,v
19 retrieving revision 1.27
20 retrieving revision 1.28
21 diff -u -r1.27 -r1.28
22 --- ChangeLog 6 Apr 2010 19:22:54 -0000 1.27
23 +++ ChangeLog 29 May 2010 18:30:40 -0000 1.28
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-php5/phpunit
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/phpunit/ChangeLog,v 1.27 2010/04/06 19:22:54 reavertm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-php5/phpunit/ChangeLog,v 1.28 2010/05/29 18:30:40 mabi Exp $
29 +
30 +*phpunit-3.4.13 (29 May 2010)
31 +
32 + 29 May 2010; <mabi@g.o> +phpunit-3.4.13.ebuild:
33 + version bump
34
35 06 Apr 2010; Maciej Mrozowski <reavertm@g.o> -phpunit-3.2.8.ebuild,
36 -phpunit-3.2.21.ebuild, -phpunit-3.3.1.ebuild:
37
38
39
40 1.1 dev-php5/phpunit/phpunit-3.4.13.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpunit/phpunit-3.4.13.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpunit/phpunit-3.4.13.ebuild?rev=1.1&content-type=text/plain
44
45 Index: phpunit-3.4.13.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-php5/phpunit/phpunit-3.4.13.ebuild,v 1.1 2010/05/29 18:30:40 mabi Exp $
50
51 EAPI="2"
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 >=dev-lang/php-5.2[simplexml,xml,tokenizer]
67 || ( <dev-lang/php-5.3[pcre,reflection,spl] >=dev-lang/php-5.3 )
68 !minimal? ( >=dev-php5/xdebug-2.0.5
69 >=dev-php/PEAR-Image_GraphViz-1.2.1
70 >=dev-php/PEAR-Log-1.8.7-r1
71 >=dev-php/PEAR-Testing_Selenium-0.2.0 )"
72
73 need_php_by_category
74
75 S="${WORKDIR}/PHPUnit-${PV}"
76
77 pkg_postinst() {
78 has_php
79 elog "${PN} can optionally use json, pdo-sqlite and pdo-mysql features."
80 elog "If you want those, emerge ${PHP_PKG} with USE=\"json pdo sqlite mysql\"."
81 if use minimal; then
82 elog "You have enabled the minimal USE flag. If you want to use features"
83 elog "from xdebug, PEAR-Log or PEAR-Testing_Selenium disable the"
84 elog "USE flag or emerge the packages manually"
85 fi
86 }