diff options
author | Brian Evans <grknight@gentoo.org> | 2015-07-22 17:06:23 +0000 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2015-07-22 17:06:23 +0000 |
commit | 2c67cfd9d91d52f052916b7f8e4d80b9f14fde84 (patch) | |
tree | 72327692112666dd9151afdfd8fe83880dc4628c /dev-php/suhosin | |
parent | ia64 stable wrt bug #550770 (diff) | |
download | gentoo-2-2c67cfd9d91d52f052916b7f8e4d80b9f14fde84.tar.gz gentoo-2-2c67cfd9d91d52f052916b7f8e4d80b9f14fde84.tar.bz2 gentoo-2-2c67cfd9d91d52f052916b7f8e4d80b9f14fde84.zip |
Remove security vulnerable version
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key D1F781EFF9F4A3B6)
Diffstat (limited to 'dev-php/suhosin')
-rw-r--r-- | dev-php/suhosin/ChangeLog | 5 | ||||
-rw-r--r-- | dev-php/suhosin/suhosin-0.9.37.1.ebuild | 57 |
2 files changed, 4 insertions, 58 deletions
diff --git a/dev-php/suhosin/ChangeLog b/dev-php/suhosin/ChangeLog index ae7dd68400ec..9bca451afbb8 100644 --- a/dev-php/suhosin/ChangeLog +++ b/dev-php/suhosin/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-php/suhosin # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/suhosin/ChangeLog,v 1.34 2015/07/22 16:33:48 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/suhosin/ChangeLog,v 1.35 2015/07/22 17:06:23 grknight Exp $ + + 22 Jul 2015; Brian Evans <grknight@gentoo.org> -suhosin-0.9.37.1.ebuild: + Remove security vulnerable version 22 Jul 2015; Mikle Kolyada <zlogene@gentoo.org> suhosin-0.9.38.ebuild: ia64 stable wrt bug #550770 diff --git a/dev-php/suhosin/suhosin-0.9.37.1.ebuild b/dev-php/suhosin/suhosin-0.9.37.1.ebuild deleted file mode 100644 index 002d9a3499c4..000000000000 --- a/dev-php/suhosin/suhosin-0.9.37.1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/suhosin/suhosin-0.9.37.1.ebuild,v 1.9 2015/02/28 20:16:14 grknight Exp $ - -EAPI="5" - -PHP_EXT_NAME="suhosin" -PHP_EXT_INI="yes" -PHP_EXT_ZENDEXT="no" -USE_PHP="php5-6 php5-5 php5-4" - -inherit php-ext-source-r2 - -KEYWORDS="alpha amd64 arm hppa ia64 ~ppc ~ppc64 ~s390 ~sh sparc x86" - -DESCRIPTION="Suhosin is an advanced protection system for PHP installations" -HOMEPAGE="http://www.suhosin.org/" -SRC_URI="http://download.suhosin.org/${P}.tar.gz" -LICENSE="PHP-3.01" -SLOT="0" -IUSE="" - -DEPEND="dev-lang/php:*[unicode]" -RDEPEND="${DEPEND}" - -src_prepare() { - local slot - for slot in $(php_get_slots); do - php_init_slot_env ${slot} - epatch "${FILESDIR}"/${P}-libcrypt.patch - done - php-ext-source-r2_src_prepare -} - -src_install() { - php-ext-source-r2_src_install - dodoc CREDITS - - local slot - for slot in $(php_get_slots); do - php_init_slot_env ${slot} - for inifile in ${PHPINIFILELIST} ; do - insinto "${inifile/${PHP_EXT_NAME}.ini/}" - insopts -m644 - doins "suhosin.ini" - done - done -} - -src_test() { - # Makefile passes a hard-coded -d extension_dir=./modules, we move the lib - # away from there in src_compile - for slot in `php_get_slots`; do - php_init_slot_env ${slot} - NO_INTERACTION="yes" emake test || die "emake test failed for slot ${slot}" - done -} |