Gentoo Archives: gentoo-commits

From: "Markus Ullmann (jokey)" <jokey@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php5/phpunit: ChangeLog phpunit-3.5.0.ebuild
Date: Mon, 04 Oct 2010 22:51:11
Message-Id: 20101004225107.F067D20051@flycatcher.gentoo.org
1 jokey 10/10/04 22:51:07
2
3 Modified: ChangeLog
4 Added: phpunit-3.5.0.ebuild
5 Log:
6 Version bump, now is splitted into pieces which have been added to cvs
7 also
8
9 (Portage version: 2.2_rc83/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.29 dev-php5/phpunit/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpunit/ChangeLog?rev=1.29&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpunit/ChangeLog?rev=1.29&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpunit/ChangeLog?r1=1.28&r2=1.29
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-php5/phpunit/ChangeLog,v
21 retrieving revision 1.28
22 retrieving revision 1.29
23 diff -u -r1.28 -r1.29
24 --- ChangeLog 29 May 2010 18:30:40 -0000 1.28
25 +++ ChangeLog 4 Oct 2010 22:51:07 -0000 1.29
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-php5/phpunit
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-php5/phpunit/ChangeLog,v 1.28 2010/05/29 18:30:40 mabi Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-php5/phpunit/ChangeLog,v 1.29 2010/10/04 22:51:07 jokey Exp $
31 +
32 +*phpunit-3.5.0 (04 Oct 2010)
33 +
34 + 04 Oct 2010; Markus Ullmann <jokey@g.o> +phpunit-3.5.0.ebuild:
35 + Version bump, now is splitted into pieces which have been added to cvs
36 + also
37
38 *phpunit-3.4.13 (29 May 2010)
39
40
41
42
43 1.1 dev-php5/phpunit/phpunit-3.5.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpunit/phpunit-3.5.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpunit/phpunit-3.5.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: phpunit-3.5.0.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-php5/phpunit/phpunit-3.5.0.ebuild,v 1.1 2010/10/04 22:51:07 jokey Exp $
53
54 EAPI="2"
55 inherit php-pear-lib-r1
56
57 KEYWORDS="~amd64 ~x86"
58
59 DESCRIPTION="Unit testing framework for PHP5"
60 HOMEPAGE="http://www.phpunit.de/"
61 SRC_URI="http://pear.phpunit.de/get/PHPUnit-${PV}.tgz"
62 LICENSE="BSD"
63 SLOT="0"
64 IUSE="+minimal"
65
66 DEPEND="!dev-php4/phpunit
67 >=dev-php/PEAR-PEAR-1.9.1"
68 RDEPEND="${DEPEND}
69 >=dev-lang/php-5.2[simplexml,xml,tokenizer]
70 || ( <dev-lang/php-5.3[pcre,reflection,spl] >=dev-lang/php-5.3 )
71 !minimal? ( >=dev-php5/xdebug-2.0.5
72 >=dev-php/PEAR-Image_GraphViz-1.2.1
73 >=dev-php/PEAR-Log-1.8.7-r1
74 dev-php5/PEAR-DbUnit
75 dev-php5/PEAR-File_Iterator
76 dev-php5/PEAR-PHP_CodeCoverage
77 dev-php5/PEAR-PHP_TokenStream
78 dev-php5/PEAR-PHP_Timer
79 dev-php5/phpunit-mockobject
80 dev-php5/phpunit-selenium )"
81
82 need_php_by_category
83
84 S="${WORKDIR}/PHPUnit-${PV}"
85
86 pkg_postinst() {
87 has_php
88 elog "${PN} can optionally use json, pdo-sqlite and pdo-mysql features."
89 elog "If you want those, emerge ${PHP_PKG} with USE=\"json pdo sqlite mysql\"."
90 if use minimal; then
91 elog "You have enabled the minimal USE flag. If you want to use features"
92 elog "from xdebug, PEAR-Log or PEAR-Testing_Selenium disable the"
93 elog "USE flag or emerge the packages manually"
94 fi
95 }