Gentoo Archives: gentoo-commits

From: Brian Evans <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/phpunit/
Date: Wed, 02 Dec 2015 21:23:27
Message-Id: 1449091371.63cf1011a14fb915fb81c3b7ff49b2c86e7a964a.grknight@gentoo
1 commit: 63cf1011a14fb915fb81c3b7ff49b2c86e7a964a
2 Author: Brian Evans <grknight <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 2 21:22:51 2015 +0000
4 Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 2 21:22:51 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63cf1011
7
8 dev-php/phpunit: Version bumps
9
10 Package-Manager: portage-2.2.26
11
12 dev-php/phpunit/Manifest | 2 ++
13 dev-php/phpunit/phpunit-4.8.19.ebuild | 42 +++++++++++++++++++++++++++++++++++
14 dev-php/phpunit/phpunit-5.0.10.ebuild | 42 +++++++++++++++++++++++++++++++++++
15 3 files changed, 86 insertions(+)
16
17 diff --git a/dev-php/phpunit/Manifest b/dev-php/phpunit/Manifest
18 index 2e071e6..097af39 100644
19 --- a/dev-php/phpunit/Manifest
20 +++ b/dev-php/phpunit/Manifest
21 @@ -1,2 +1,4 @@
22 DIST phpunit-3.7.20.phar 2769487 SHA256 7972291d498a425f7daaf0274eed45d8ba564b87da3250fc975e1af2b0d60602 SHA512 9263364087ad2f4870ce4d849c31b75c82799088809e444206b9e113e917d05923ece62264568ee5f2a6d7aeb04d75cbdc375ddd7825ceff16704431de5f68bf WHIRLPOOL 7e6399ccfe01f5e59bd14e243ee4fed760a40d36708aea8c1c5be08b2814125effb89f351f8ea0777d280d7a5557aadfe6142330bbc020d4c1159658cfc99baa
23 DIST phpunit-4.3.1.phar 3324489 SHA256 1bac0c5f53bc04efa680bf9b3dcb35e804714eb8f497931ba81bdf08ae432c37 SHA512 de123e2301dc1d64e7401ceaec48c9458c3ab0dfc78faa488bed12c5b30b1367e1f9f6dfbbd5a07b427a56aad6d989f36a11b4642a0a843eed9c39e551be0490 WHIRLPOOL dbe5bed2251832c6c905b09c131bc2dc98de6247ef55077d9882c41a0b20b2e8b1c2489dbc0b3c1ed746f81c2b7163042e73790fff2b2ca78f8470875d77d88f
24 +DIST phpunit-4.8.19.phar 3079159 SHA256 ff0e3c284f0170c2f8a6759937d7e0f1689c079e6aff114218a339bab79de8a9 SHA512 08b2d6743e3f6c3bcc09d60391886fb3a21bffe338304bbe65703d430ded1fab96d9ef426467e5703af5c3ebed771d21fa49059e994e8b02056f340087ba616b WHIRLPOOL f69dde07d401b112bacddd6aec81ff4241552c5be9b3ccf2a447da353e32470f80e2b90e3fe9e2c723ad845d16a90a32778275b54abf6995c8ecc9d1c14f6b80
25 +DIST phpunit-5.0.10.phar 2773192 SHA256 e740f1376fec6dd19023d38537583276f804d02f818af1f1b2012599743c7c29 SHA512 978bbc409aeb6823c8a8a630fb6221fad5e6aac1d49288c93a69936468bdc6c01d2c58344b161b6fa6a6ccf6ff1100738edb00d7c3cef357751d00323c365d8d WHIRLPOOL 52255b646c063b60d2094fd1f08546b4c498ddd3c4b7fe0ebfc3f6370581e00679774e5492a30a3f5428007250a1c13937c34016e746004a019bfa26e52cdc18
26
27 diff --git a/dev-php/phpunit/phpunit-4.8.19.ebuild b/dev-php/phpunit/phpunit-4.8.19.ebuild
28 new file mode 100644
29 index 0000000..826179f
30 --- /dev/null
31 +++ b/dev-php/phpunit/phpunit-4.8.19.ebuild
32 @@ -0,0 +1,42 @@
33 +# Copyright 1999-2015 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +# $Id$
36 +
37 +EAPI=5
38 +
39 +DESCRIPTION="A PHP Unit Testing framework"
40 +HOMEPAGE="http://phpunit.de"
41 +
42 +PHPUNIT_PHAR="${P}.phar"
43 +
44 +SRC_URI="https://phar.phpunit.de/${PHPUNIT_PHAR}"
45 +
46 +LICENSE="BSD"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~hppa ~x86"
49 +IUSE=""
50 +
51 +DEPEND="
52 + || (
53 + dev-lang/php:5.5[phar,xml]
54 + dev-lang/php:5.6[phar,xml]
55 + )"
56 +RDEPEND="${DEPEND}"
57 +
58 +S="${WORKDIR}"
59 +
60 +src_unpack() {
61 + return
62 +}
63 +
64 +src_install() {
65 + insinto /usr/share/php/phpunit
66 + insopts -m755
67 + newins "${DISTDIR}"/${PHPUNIT_PHAR} phpunit.phar
68 + dosym /usr/share/php/phpunit/phpunit.phar /usr/bin/phpunit
69 +}
70 +
71 +pkg_postinst() {
72 + elog "${PN} can optionally use json, pdo-sqlite and pdo-mysql features."
73 + elog "If you want those, emerge dev-lang/php with USE=\"json pdo sqlite mysql\"."
74 +}
75
76 diff --git a/dev-php/phpunit/phpunit-5.0.10.ebuild b/dev-php/phpunit/phpunit-5.0.10.ebuild
77 new file mode 100644
78 index 0000000..4c2b768
79 --- /dev/null
80 +++ b/dev-php/phpunit/phpunit-5.0.10.ebuild
81 @@ -0,0 +1,42 @@
82 +# Copyright 1999-2015 Gentoo Foundation
83 +# Distributed under the terms of the GNU General Public License v2
84 +# $Id$
85 +
86 +EAPI=5
87 +
88 +DESCRIPTION="A PHP Unit Testing framework"
89 +HOMEPAGE="http://phpunit.de"
90 +
91 +PHPUNIT_PHAR="${P}.phar"
92 +
93 +SRC_URI="https://phar.phpunit.de/${PHPUNIT_PHAR}"
94 +
95 +LICENSE="BSD"
96 +SLOT="0"
97 +KEYWORDS="~amd64 ~hppa ~x86"
98 +IUSE=""
99 +
100 +DEPEND="
101 + || (
102 + dev-lang/php:5.6[phar,xml]
103 + dev-lang/php:7.0[phar,xml]
104 + )"
105 +RDEPEND="${DEPEND}"
106 +
107 +S="${WORKDIR}"
108 +
109 +src_unpack() {
110 + return
111 +}
112 +
113 +src_install() {
114 + insinto /usr/share/php/phpunit
115 + insopts -m755
116 + newins "${DISTDIR}"/${PHPUNIT_PHAR} phpunit.phar
117 + dosym /usr/share/php/phpunit/phpunit.phar /usr/bin/phpunit
118 +}
119 +
120 +pkg_postinst() {
121 + elog "${PN} can optionally use json, pdo-sqlite and pdo-mysql features."
122 + elog "If you want those, emerge dev-lang/php with USE=\"json pdo sqlite mysql\"."
123 +}