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