dev-php/phpunit: remove unused phpunit-4.3.1.ebuild to fix CVE-2017-9841.
authorMichael Orlitzky <mjo@gentoo.org>
Tue, 14 Nov 2017 13:06:19 +0000 (08:06 -0500)
committerMichael Orlitzky <mjo@gentoo.org>
Tue, 14 Nov 2017 14:41:57 +0000 (09:41 -0500)
Bug: https://bugs.gentoo.org/635356
Package-Manager: Portage-2.3.8, Repoman-2.3.3

dev-php/phpunit/Manifest
dev-php/phpunit/phpunit-4.3.1.ebuild [deleted file]

index e76b0dfdeb1d39bef792c298ed91d0e8a1ca84bc..70f0ddc2cd2bd46a8c892290f5a13eb716c24b80 100644 (file)
@@ -1,2 +1 @@
-DIST phpunit-4.3.1.phar 3324489 SHA256 1bac0c5f53bc04efa680bf9b3dcb35e804714eb8f497931ba81bdf08ae432c37 SHA512 de123e2301dc1d64e7401ceaec48c9458c3ab0dfc78faa488bed12c5b30b1367e1f9f6dfbbd5a07b427a56aad6d989f36a11b4642a0a843eed9c39e551be0490 WHIRLPOOL dbe5bed2251832c6c905b09c131bc2dc98de6247ef55077d9882c41a0b20b2e8b1c2489dbc0b3c1ed746f81c2b7163042e73790fff2b2ca78f8470875d77d88f
 DIST phpunit-5.7.15.tar.gz 205474 SHA256 d1ce59cfe5f4939c694b6a3ca84eed9a0099228ad8f57c379ffc6fd4806ef1a7 SHA512 6a836e1ad1656fd1d1c5a58ced3c1826b4decc01798b6a804b487c9b4e094ec32f6eb8a84058e268eade62a2fe19d7bd1e760b8b9433299d9fe9c09afdf2bdd3 WHIRLPOOL 7a268ac8df88992fe97fa74820a766bf4199753c743da945d6bae64987fa8f904c0dfe026d861d81aade4cd23576133592f998dc66150aea730cefc804ed610b
diff --git a/dev-php/phpunit/phpunit-4.3.1.ebuild b/dev-php/phpunit/phpunit-4.3.1.ebuild
deleted file mode 100644 (file)
index 24edcb1..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="A PHP Unit Testing framework"
-HOMEPAGE="http://phpunit.de"
-
-PHPUNIT_PHAR="${P}.phar"
-
-SRC_URI="https://phar.phpunit.de/${PHPUNIT_PHAR}"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~hppa x86"
-IUSE=""
-
-DEPEND="dev-lang/php:*[phar,xml]"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}"
-
-src_unpack() {
-       return
-}
-
-src_install() {
-       insinto /usr/share/php/phpunit
-       insopts -m755
-       newins "${DISTDIR}"/${PHPUNIT_PHAR} phpunit.phar
-       dosym ../share/php/phpunit/phpunit.phar /usr/bin/phpunit
-}
-
-pkg_postinst() {
-       elog "${PN} can optionally use json, pdo-sqlite and pdo-mysql features."
-       elog "If you want those, emerge dev-lang/php with USE=\"json pdo sqlite mysql\"."
-}