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-php5/phpunit: ChangeLog phpunit-3.5.0-r1.ebuild phpunit-3.5.0.ebuild
Date: Sat, 30 Oct 2010 17:22:53
Message-Id: 20101030172249.C85E520051@flycatcher.gentoo.org
1 olemarkus 10/10/30 17:22:49
2
3 Modified: ChangeLog
4 Added: phpunit-3.5.0-r1.ebuild
5 Removed: phpunit-3.5.0.ebuild
6 Log:
7 Removed the minimal USE flag and fixed dependencies
8
9 (Portage version: 2.1.9.11/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.32 dev-php5/phpunit/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpunit/ChangeLog?rev=1.32&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpunit/ChangeLog?rev=1.32&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpunit/ChangeLog?r1=1.31&r2=1.32
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-php5/phpunit/ChangeLog,v
21 retrieving revision 1.31
22 retrieving revision 1.32
23 diff -u -r1.31 -r1.32
24 --- ChangeLog 20 Oct 2010 14:18:50 -0000 1.31
25 +++ ChangeLog 30 Oct 2010 17:22:49 -0000 1.32
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.31 2010/10/20 14:18:50 hwoarang Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-php5/phpunit/ChangeLog,v 1.32 2010/10/30 17:22:49 olemarkus Exp $
31 +
32 +*phpunit-3.5.0-r1 (30 Oct 2010)
33 +
34 + 30 Oct 2010; <olemarkus@g.o> -phpunit-3.5.0.ebuild,
35 + +phpunit-3.5.0-r1.ebuild:
36 + Removed the minimal USE flag and fixed dependencies
37
38 20 Oct 2010; Markos Chandras <hwoarang@g.o> phpunit-3.4.13.ebuild:
39 Stable on amd64 wrt bug #336869
40
41
42
43 1.1 dev-php5/phpunit/phpunit-3.5.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpunit/phpunit-3.5.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php5/phpunit/phpunit-3.5.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: phpunit-3.5.0-r1.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-r1.ebuild,v 1.1 2010/10/30 17:22:49 olemarkus 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=""
65
66 DEPEND="!dev-php4/phpunit
67 >=dev-php/PEAR-PEAR-1.9.1"
68 RDEPEND="${DEPEND}
69 >=dev-lang/php-5.2.7[simplexml,xml,tokenizer]
70 || ( <dev-lang/php-5.3[pcre,reflection,spl] >=dev-lang/php-5.3 )
71 >=dev-php/PEAR-Image_GraphViz-1.2.1
72 >=dev-php/PEAR-Log-1.8.7-r1
73 dev-php5/PEAR-DbUnit
74 dev-php5/PEAR-PHP_CodeCoverage
75 dev-php5/PEAR-PHP_Timer
76 dev-php5/phpunit-mockobject
77 dev-php5/phpunit-selenium"
78
79 need_php_by_category
80
81 S="${WORKDIR}/PHPUnit-${PV}"
82
83 pkg_postinst() {
84 has_php
85 elog "${PN} can optionally use json, pdo-sqlite and pdo-mysql features."
86 elog "If you want those, emerge ${PHP_PKG} with USE=\"json pdo sqlite mysql\"."
87 }