grknight 15/06/10 14:12:54 Modified: ChangeLog Added: suhosin-0.9.38.ebuild Log: Version bump for security bug 550770 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key D1F781EFF9F4A3B6)
Revision Changes Path 1.27 dev-php/suhosin/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/suhosin/ChangeLog?rev=1.27&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/suhosin/ChangeLog?rev=1.27&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/suhosin/ChangeLog?r1=1.26&r2=1.27 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-php/suhosin/ChangeLog,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- ChangeLog 28 Feb 2015 20:16:14 -0000 1.26 +++ ChangeLog 10 Jun 2015 14:12:54 -0000 1.27 @@ -1,6 +1,12 @@ # 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.26 2015/02/28 20:16:14 grknight Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/suhosin/ChangeLog,v 1.27 2015/06/10 14:12:54 grknight Exp $ + +*suhosin-0.9.38 (10 Jun 2015) + + 10 Jun 2015; Brian Evans <[email protected]> + +files/suhosin-0.9.38-libcrypt.patch, +suhosin-0.9.38.ebuild: + Version bump for security bug 550770 28 Feb 2015; Brian Evans <[email protected]> -files/suhosin-0.9.33-fix-ZTS-compile-problem.patch, 1.1 dev-php/suhosin/suhosin-0.9.38.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/suhosin/suhosin-0.9.38.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/suhosin/suhosin-0.9.38.ebuild?rev=1.1&content-type=text/plain Index: suhosin-0.9.38.ebuild =================================================================== # 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.38.ebuild,v 1.1 2015/06/10 14:12:54 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="" for target in ${USE_PHP}; do slot=${target/php} slot=${slot/-/.} PHPUSEDEPEND="${PHPUSEDEPEND} php_targets_${target}? ( dev-lang/php:${slot}[unicode] )" done DEPEND="${PHPUSEDEPEND}" 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 }
