diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2019-06-07 15:13:58 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2019-06-07 16:08:04 +0200 |
commit | 66ed1955e27cd4130dc069b05b740b88f4dc4438 (patch) | |
tree | ec7d9453ecb89087eeb5d322e31fb45f9b48cda2 /dev-php | |
parent | dev-php/pecl-crack: add PHP 7.3 support (diff) | |
download | gentoo-66ed1955e27cd4130dc069b05b740b88f4dc4438.tar.gz gentoo-66ed1955e27cd4130dc069b05b740b88f4dc4438.tar.bz2 gentoo-66ed1955e27cd4130dc069b05b740b88f4dc4438.zip |
dev-php/pecl-translit: bump to v0.6.3
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/pecl-translit/Manifest | 1 | ||||
-rw-r--r-- | dev-php/pecl-translit/pecl-translit-0.6.3.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-php/pecl-translit/Manifest b/dev-php/pecl-translit/Manifest index 15e2af8211c4..77fb1afb5b8d 100644 --- a/dev-php/pecl-translit/Manifest +++ b/dev-php/pecl-translit/Manifest @@ -1 +1,2 @@ DIST pecl-translit-0.6.2.tar.gz 226445 BLAKE2B c5fbf99134b7f933f1d8209ebffa97a28c927b8db917319a9308debfa4275d8e6e3e0c261cfb0661c8202f25c0cdf5a888bc90f356cd80a2ab788366c4c3cb85 SHA512 1d5229ceb2c06f5e4a9e3f7e1e760fc2974c01b732f8e220b9b1ddd49a82c932f4237fb6a19c82017270614881156f9637cffbe7896132e4a07e7a6547915ebb +DIST pecl-translit-0.6.3.tar.gz 227419 BLAKE2B ebff291a00d61bb4f8e2c47e26baef4278f317be8acd7e5265d3056f8992e6b7e792718c86633277c4a0af5403e253b317241a71aba9b73079a8efb53389ab30 SHA512 5b5e3097a972e45424696abea4d4698fc6c7b6598f1a76754224a4b66776752a01b3bad52bc14afb8cc6e75d36c4558677e609a379898cdd91a5b0a652155cd1 diff --git a/dev-php/pecl-translit/pecl-translit-0.6.3.ebuild b/dev-php/pecl-translit/pecl-translit-0.6.3.ebuild new file mode 100644 index 000000000000..b0b109824d15 --- /dev/null +++ b/dev-php/pecl-translit/pecl-translit-0.6.3.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PHP_EXT_NAME="translit" +PHP_EXT_INI="yes" +PHP_EXT_ZENDEXT="no" + +USE_PHP="php7-1 php7-2 php7-3" +PHP_EXT_NAME="translit" + +inherit php-ext-source-r3 + +SRC_URI="https://github.com/derickr/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64 ~x86" +HOMEPAGE="https://github.com/derickr/pecl-translit" + +DESCRIPTION="Transliterates non-latin character sets to latin" +LICENSE="BSD-2" +SLOT="0" +IUSE="" +PHP_EXT_ECONF_ARGS=() + +src_test() { + 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 +} |