summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Orlitzky <mjo@gentoo.org>2017-11-14 08:06:19 -0500
committerMichael Orlitzky <mjo@gentoo.org>2017-11-14 09:41:57 -0500
commitb731db1e2b5f6b7efa4a9416b079aca6ce35beac (patch)
tree0a4f2d8798de4e3b776492d40c085c618e32cf68 /dev-php/phpunit/phpunit-4.3.1.ebuild
parentapp-text/libwps: (diff)
downloadgentoo-b731db1e2b5f6b7efa4a9416b079aca6ce35beac.tar.gz
gentoo-b731db1e2b5f6b7efa4a9416b079aca6ce35beac.tar.bz2
gentoo-b731db1e2b5f6b7efa4a9416b079aca6ce35beac.zip
dev-php/phpunit: remove unused phpunit-4.3.1.ebuild to fix CVE-2017-9841.
Bug: https://bugs.gentoo.org/635356 Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'dev-php/phpunit/phpunit-4.3.1.ebuild')
-rw-r--r--dev-php/phpunit/phpunit-4.3.1.ebuild37
1 files changed, 0 insertions, 37 deletions
diff --git a/dev-php/phpunit/phpunit-4.3.1.ebuild b/dev-php/phpunit/phpunit-4.3.1.ebuild
deleted file mode 100644
index 24edcb1da974..000000000000
--- a/dev-php/phpunit/phpunit-4.3.1.ebuild
+++ /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\"."
-}