dev-php/pecl-mailparse: bump to v3.0.3
authorThomas Deutschmann <whissi@gentoo.org>
Fri, 5 Apr 2019 20:12:44 +0000 (22:12 +0200)
committerThomas Deutschmann <whissi@gentoo.org>
Fri, 5 Apr 2019 20:21:41 +0000 (22:21 +0200)
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
dev-php/pecl-mailparse/Manifest
dev-php/pecl-mailparse/pecl-mailparse-3.0.3.ebuild [new file with mode: 0644]

index 984ed104fe9f83594030d41bbd7f7e40d2ba999a..32e13a97a2f6af337d0aa18f412729c90c7127c8 100644 (file)
@@ -1,2 +1,3 @@
 DIST mailparse-2.1.6.tgz 36538 BLAKE2B c079a5f9980384ea90113d3e295b3de4182c8c3006a62439bfb73ab39dc67bb03202298e7bf5e42f71d599d645cf4d79fbf2d09a536e621efe73f8fff6bce56a SHA512 a7337dd2e99a953a55b38c236da95a6bd2950c2bca16fc0ddfec39be8b0ffe01007353fc7b562d0509e0bb1623c3d2b03935d1c98a07dcd9f0b14bb508bce374
 DIST mailparse-3.0.2.tgz 38206 BLAKE2B f50b3f5abfc6e2e5a3647eb33ad07de9e3e66a94933be612a51c868210745b109ddca8e3e174a7a4abcfdc72856f34848e65972b277cfa3e836bef3ee4c79897 SHA512 be04e15cf3577542447186d7ead4e31159c171c99de0a255d4ee2f6f760b80ecb44be056bd9089180601f622b9a71f4331f194e1adaa702d1d964009682896f6
+DIST mailparse-3.0.3.tgz 940370 BLAKE2B 1454750a90e367a2c9ade2d689a0bd3290005db170e6c2f601c23790fd5de701061b8a9cd0dea64eb501e44b3d0a3e40ff75a58ce5bb633837bad682979c097c SHA512 8bc99cb1a3331ee5d40076abe20a15870deb6e28e2b0adb6227a36a01999648a9341168e05f1db96d2458394a13cad643ee1c5dce4d15669165d01c29d95417b
diff --git a/dev-php/pecl-mailparse/pecl-mailparse-3.0.3.ebuild b/dev-php/pecl-mailparse/pecl-mailparse-3.0.3.ebuild
new file mode 100644 (file)
index 0000000..0caa08e
--- /dev/null
@@ -0,0 +1,49 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PHP_EXT_NAME="mailparse"
+PHP_EXT_INI="yes"
+PHP_EXT_ZENDEXT="no"
+PHP_EXT_ECONF_ARGS=""
+DOCS=( README.md )
+
+USE_PHP="php7-0 php7-1 php5-6 php7-2 php7-3"
+
+inherit php-ext-pecl-r3
+
+# Only build for 7.x
+USE_PHP="php7-0 php7-1 php7-2 php7-3"
+
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+
+DESCRIPTION="PHP extension for parsing and working with RFC822 and MIME compliant messages"
+LICENSE="PHP-3.01"
+SLOT="7"
+IUSE=""
+
+PHPUSEDEPEND="
+       php_targets_php7-0? ( dev-lang/php:7.0[unicode] )
+       php_targets_php7-1? ( dev-lang/php:7.1[unicode] )
+       php_targets_php7-2? ( dev-lang/php:7.2[unicode] )
+"
+DEPEND="${PHPUSEDEPEND}
+       dev-util/re2c"
+RDEPEND="${PHPUSEDEPEND} php_targets_php5-6? ( dev-php/pecl-mailparse:0[php_targets_php5-6] )"
+
+src_prepare() {
+       if use php_targets_php7-0 || use php_targets_php7-1 || use php_targets_php7-2 ; then
+               # Missing test source files in archive.  Fixed upstream in next release.
+               rm tests/011.phpt tests/bug001.phpt || die
+               php-ext-source-r3_src_prepare
+       else
+               default
+       fi
+}
+
+src_install() {
+       if use php_targets_php7-0 || use php_targets_php7-1 || use php_targets_php7-2 ; then
+               php-ext-pecl-r3_src_install
+       fi
+}