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/phpunit: phpunit-3.7.20.ebuild ChangeLog
Date: Sun, 19 May 2013 05:56:03
Message-Id: 20130519055559.E72B72171D@flycatcher.gentoo.org
1 olemarkus 13/05/19 05:55:59
2
3 Modified: ChangeLog
4 Added: phpunit-3.7.20.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key C4A92BF5)
9
10 Revision Changes Path
11 1.14 dev-php/phpunit/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/phpunit/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/phpunit/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/phpunit/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-php/phpunit/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 28 Mar 2013 10:35:54 -0000 1.13
24 +++ ChangeLog 19 May 2013 05:55:59 -0000 1.14
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-php/phpunit
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-php/phpunit/ChangeLog,v 1.13 2013/03/28 10:35:54 olemarkus Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-php/phpunit/ChangeLog,v 1.14 2013/05/19 05:55:59 olemarkus Exp $
30 +
31 +*phpunit-3.7.20 (19 May 2013)
32 +
33 + 19 May 2013; Ole Markus With <olemarkus@g.o> +phpunit-3.7.20.ebuild:
34 + Version bump
35
36 *phpunit-3.7.19 (28 Mar 2013)
37
38
39
40
41 1.1 dev-php/phpunit/phpunit-3.7.20.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/phpunit/phpunit-3.7.20.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/phpunit/phpunit-3.7.20.ebuild?rev=1.1&content-type=text/plain
45
46 Index: phpunit-3.7.20.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-php/phpunit/phpunit-3.7.20.ebuild,v 1.1 2013/05/19 05:55:59 olemarkus Exp $
51
52 EAPI=5
53
54 DESCRIPTION="A PHP Unit Testing framework"
55 HOMEPAGE="http://phpunit.de"
56
57 PHPUNIT_PHAR="${P}.phar"
58
59 SRC_URI="http://dev.gentoo.org/~olemarkus/phpunit/${PHPUNIT_PHAR}"
60
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE=""
65
66 DEPEND="dev-lang/php[phar,xml]"
67 RDEPEND="${DEPEND}"
68
69 S="${WORKDIR}"
70
71 src_unpack() {
72 return
73 }
74
75 src_install() {
76 insinto /usr/share/php/phpunit
77 insopts -m755
78 newins "${DISTDIR}"/${PHPUNIT_PHAR} phpunit.phar
79 dosym /usr/share/php/phpunit/phpunit.phar /usr/bin/phpunit
80 }
81
82 pkg_postinst() {
83 elog "${PN} can optionally use json, pdo-sqlite and pdo-mysql features."
84 elog "If you want those, emerge dev-lang/php with USE=\"json pdo sqlite mysql\"."
85 }