public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-php/suhosin/
@ 2016-10-26 15:22 Brian Evans
  0 siblings, 0 replies; 3+ messages in thread
From: Brian Evans @ 2016-10-26 15:22 UTC (permalink / raw
  To: gentoo-commits

commit:     e4371eaa0c6350996e13c40756cd79ee3ebde89b
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 26 15:22:38 2016 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Wed Oct 26 15:22:38 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4371eaa

dev-php/suhosin: Revbump to drop php 5.4 and 5.5 and EAPI6

Package-Manager: portage-2.3.2

 dev-php/suhosin/suhosin-0.9.38-r1.ebuild | 57 ++++++++++++++++++++++++++++++++
 1 file changed, 57 insertions(+)

diff --git a/dev-php/suhosin/suhosin-0.9.38-r1.ebuild b/dev-php/suhosin/suhosin-0.9.38-r1.ebuild
new file mode 100644
index 00000000..a459bc7
--- /dev/null
+++ b/dev-php/suhosin/suhosin-0.9.38-r1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+PHP_EXT_NAME="suhosin"
+PHP_EXT_INI="no"
+PHP_EXT_ZENDEXT="no"
+USE_PHP="php5-6"
+
+inherit php-ext-source-r3
+
+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}"
+
+PATCHES=( "${FILESDIR}"/${P}-libcrypt.patch )
+DOCS=( CREDITS )
+
+src_install() {
+	php-ext-source-r3_src_install
+
+	local slot inifile
+	for slot in $(php_get_slots); do
+		php_init_slot_env ${slot}
+		for inifile in $(php_slot_ini_files "${slot}") ; 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
+}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-php/suhosin/
@ 2016-12-07 21:49 Brian Evans
  0 siblings, 0 replies; 3+ messages in thread
From: Brian Evans @ 2016-12-07 21:49 UTC (permalink / raw
  To: gentoo-commits

commit:     621c8a48ea5225699bb2368866b4ffa3ecf0be19
Author:     Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Wed Dec  7 21:18:02 2016 +0000
Commit:     Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Wed Dec  7 21:49:32 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=621c8a48

dev-php/suhosin: Drop old revision

Package-Manager: portage-2.3.2

 dev-php/suhosin/suhosin-0.9.38.ebuild | 64 -----------------------------------
 1 file changed, 64 deletions(-)

diff --git a/dev-php/suhosin/suhosin-0.9.38.ebuild b/dev-php/suhosin/suhosin-0.9.38.ebuild
deleted file mode 100644
index 9f0b7e0..00000000
--- a/dev-php/suhosin/suhosin-0.9.38.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-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
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-php/suhosin/
@ 2018-06-07 19:22 Aaron Bauman
  0 siblings, 0 replies; 3+ messages in thread
From: Aaron Bauman @ 2018-06-07 19:22 UTC (permalink / raw
  To: gentoo-commits

commit:     47f7642ac4daab876532c9b72059f8c4a26de3f7
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Mon Jun  4 20:13:07 2018 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Thu Jun  7 19:20:12 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47f7642a

dev-php/suhosin: use HTTPs

 dev-php/suhosin/suhosin-0.9.38-r1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-php/suhosin/suhosin-0.9.38-r1.ebuild b/dev-php/suhosin/suhosin-0.9.38-r1.ebuild
index 226549ab6ff..3372f3abe75 100644
--- a/dev-php/suhosin/suhosin-0.9.38-r1.ebuild
+++ b/dev-php/suhosin/suhosin-0.9.38-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -13,8 +13,8 @@ inherit php-ext-source-r3
 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"
+HOMEPAGE="https://www.suhosin.org/"
+SRC_URI="https://download.suhosin.org/${P}.tar.gz"
 LICENSE="PHP-3.01"
 SLOT="0"
 IUSE=""


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-06-07 19:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-07 21:49 [gentoo-commits] repo/gentoo:master commit in: dev-php/suhosin/ Brian Evans
  -- strict thread matches above, loose matches on Subject: below --
2018-06-07 19:22 Aaron Bauman
2016-10-26 15:22 Brian Evans

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox