Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-mailparse/
Date: Wed, 30 Sep 2020 18:05:50
Message-Id: 1601489023.c2fb607934d8e7b737acc75e0ab8da1091ef1c33.whissi@gentoo
1 commit: c2fb607934d8e7b737acc75e0ab8da1091ef1c33
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 30 16:27:57 2020 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 30 18:03:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2fb6079
7
8 dev-php/pecl-mailparse: bump to v3.1.1
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 dev-php/pecl-mailparse/Manifest | 1 +
14 dev-php/pecl-mailparse/pecl-mailparse-3.1.1.ebuild | 28 ++++++++++++++++++++++
15 2 files changed, 29 insertions(+)
16
17 diff --git a/dev-php/pecl-mailparse/Manifest b/dev-php/pecl-mailparse/Manifest
18 index 20ab4b78d42..d1feeff56a5 100644
19 --- a/dev-php/pecl-mailparse/Manifest
20 +++ b/dev-php/pecl-mailparse/Manifest
21 @@ -1,2 +1,3 @@
22 DIST mailparse-3.0.4.tgz 940428 BLAKE2B e3e33ecfa953766744a6980e0c681bb9b473d4cbf46179c8099f5483e8da46f47bba30d953d1c3629ea6d1719fcdfb0cca8536de3c3159a979cb7b2cde9ff9a2 SHA512 71eaebc1dc8a4698e60e170facaba16a5a9314bcb21c375b2f9a3069d7f1da819bfabc736b244e3f87131149d4efd9363120e77d8a078a0ede15113123d13ce3
23 DIST mailparse-3.1.0.tgz 941058 BLAKE2B 050b16d90ba2cb4443df05eadb85d9835d1af8940bbb348cd5c6dd180f706519f483e9af5fe57ed35a5ea8e66a9e8a868848e7f2a1eca397c247e7f4aa1c110f SHA512 5a2a0786fc62fc47a60dcd52158ed86a1a58a26dc764b62abd763f784553f853c6644e4de76c85ad9133c8359d040c546c662b5f838ff7a5c88307aa21a589ca
24 +DIST mailparse-3.1.1.tgz 941192 BLAKE2B 00b5a506031cd03439e3d67172c17aeeb6af3b950694251f7654007642bf80fff3cda900fc97ba177b91ca970e47416132080793ce64d8038e7aecbf2fdaf6c0 SHA512 01ddb8d4d27a74c14f70b02b49322c60fc79affab374205fee91b9da21e5148e08dba024f6bc620e4f26c2c937675e09092c52ca69172d2f7797c3e2bf374bee
25
26 diff --git a/dev-php/pecl-mailparse/pecl-mailparse-3.1.1.ebuild b/dev-php/pecl-mailparse/pecl-mailparse-3.1.1.ebuild
27 new file mode 100644
28 index 00000000000..cb73196e10c
29 --- /dev/null
30 +++ b/dev-php/pecl-mailparse/pecl-mailparse-3.1.1.ebuild
31 @@ -0,0 +1,28 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +WANT_AUTOMAKE="none"
38 +PHP_EXT_NAME="mailparse"
39 +PHP_EXT_INI="yes"
40 +PHP_EXT_ZENDEXT="no"
41 +PHP_EXT_ECONF_ARGS=""
42 +USE_PHP="php7-1 php7-2 php7-3 php7-4"
43 +PHP_EXT_NEEDED_USE="unicode"
44 +DOCS=( README.md )
45 +
46 +inherit php-ext-pecl-r3
47 +
48 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
49 +
50 +DESCRIPTION="PHP extension for parsing and working with RFC822 and MIME compliant messages"
51 +LICENSE="PHP-3.01"
52 +SLOT="7"
53 +IUSE=""
54 +
55 +src_prepare() {
56 + # Missing test source files in archive. Fixed upstream in next release.
57 + rm tests/011.phpt tests/bug001.phpt || die
58 + php-ext-source-r3_src_prepare
59 +}