diff options
author | 2015-04-29 01:47:10 +0000 | |
---|---|---|
committer | 2015-04-29 01:47:10 +0000 | |
commit | 9f7e404016b8005d09e0c823a1ad8b1ae8810cf1 (patch) | |
tree | 6f8e11eb25244e890cd22b9fcecc7b883c1a6267 /dev-php/pecl-syck | |
parent | Version bump and silence repoman warnings (diff) | |
download | gentoo-2-9f7e404016b8005d09e0c823a1ad8b1ae8810cf1.tar.gz gentoo-2-9f7e404016b8005d09e0c823a1ad8b1ae8810cf1.tar.bz2 gentoo-2-9f7e404016b8005d09e0c823a1ad8b1ae8810cf1.zip |
Revbump to make dependencies more specific and silence repoman
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 0xD1F781EFF9F4A3B6)
Diffstat (limited to 'dev-php/pecl-syck')
-rw-r--r-- | dev-php/pecl-syck/ChangeLog | 7 | ||||
-rw-r--r-- | dev-php/pecl-syck/pecl-syck-0.9.3-r4.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/dev-php/pecl-syck/ChangeLog b/dev-php/pecl-syck/ChangeLog index 97499f58fa19..da5dcc646d72 100644 --- a/dev-php/pecl-syck/ChangeLog +++ b/dev-php/pecl-syck/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-php/pecl-syck # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-syck/ChangeLog,v 1.14 2015/01/18 18:20:24 grknight Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-syck/ChangeLog,v 1.15 2015/04/29 01:47:10 grknight Exp $ + +*pecl-syck-0.9.3-r4 (29 Apr 2015) + + 29 Apr 2015; Brian Evans <grknight@gentoo.org> +pecl-syck-0.9.3-r4.ebuild: + Revbump to make dependencies more specific and silence repoman 18 Jan 2015; Brian Evans <grknight@gentoo.org> -pecl-syck-0.9.3-r2.ebuild: Drop old diff --git a/dev-php/pecl-syck/pecl-syck-0.9.3-r4.ebuild b/dev-php/pecl-syck/pecl-syck-0.9.3-r4.ebuild new file mode 100644 index 000000000000..60005baa9aa2 --- /dev/null +++ b/dev-php/pecl-syck/pecl-syck-0.9.3-r4.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-syck/pecl-syck-0.9.3-r4.ebuild,v 1.1 2015/04/29 01:47:10 grknight Exp $ + +EAPI=5 + +PHP_EXT_NAME="syck" +PHP_EXT_INI="yes" +PHP_EXT_ZENDEXT="no" +DOCS="CHANGELOG TODO" + +USE_PHP="php5-6 php5-5 php5-4" +inherit php-ext-pecl-r2 + +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" + +DESCRIPTION="PHP bindings for Syck - reads and writes YAML with it" +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}[hash] )" +done + +DEPEND="dev-libs/syck + ${PHPUSEDEPEND}" +RDEPEND="${DEPEND}" + +src_prepare() { + local slot + for slot in $(php_get_slots); do + php_init_slot_env ${slot} + epatch "${FILESDIR}"/fix-php-5-4-support.patch + done + php-ext-source-r2_src_prepare +} |