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-imagick/
Date: Fri, 18 Jun 2021 10:27:44
Message-Id: 1624012052.7d01849ddef124578ac7e7fed3411dfd84e1cef3.whissi@gentoo
1 commit: 7d01849ddef124578ac7e7fed3411dfd84e1cef3
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 18 10:17:32 2021 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 18 10:27:32 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d01849d
7
8 dev-php/pecl-imagick: bump to v3.5.0
9
10 Closes: https://bugs.gentoo.org/772332
11 Package-Manager: Portage-3.0.20, Repoman-3.0.3
12 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
13
14 dev-php/pecl-imagick/Manifest | 1 +
15 dev-php/pecl-imagick/pecl-imagick-3.5.0.ebuild | 26 ++++++++++++++++++++++++++
16 2 files changed, 27 insertions(+)
17
18 diff --git a/dev-php/pecl-imagick/Manifest b/dev-php/pecl-imagick/Manifest
19 index 1f064c2a8fe..728a5b23332 100644
20 --- a/dev-php/pecl-imagick/Manifest
21 +++ b/dev-php/pecl-imagick/Manifest
22 @@ -1 +1,2 @@
23 DIST imagick-3.4.4.tgz 253434 BLAKE2B 73ce21547881b60733dbc19ae83cd2e60135dbb4052ea723f1ee10b3759ce12065a0cab2a7e4923b78e9e68b12fd7b875c7d1bd7b2a14ce4e4d7ff5b9c7fbc06 SHA512 73145a1f095849c32760db2dfc4acc13c57d99a037d65eca9b0ddf8f8e81cf6d28a50f2614e44bae1d90b4f881a2e9a64926e0e3b9403e491fd903ffeb30c4b7
24 +DIST imagick-3.5.0.tgz 300657 BLAKE2B 7cf2c34b84a10f451851493b27a33f7188da0ad53673589db494a6b1a9ae089c5b3e646de4f7b76c29ffb8cbe1c8154ebc8b69d61bc597b082d33778e8f3a18f SHA512 4176494797c78fee28fbf076ee67afe4a634703dd19fa2f727aeb6accc2d65a3fc6224c3131f25d3ac60b2e8d531da2cf76d35800d1f10071cf362067cf531ec
25
26 diff --git a/dev-php/pecl-imagick/pecl-imagick-3.5.0.ebuild b/dev-php/pecl-imagick/pecl-imagick-3.5.0.ebuild
27 new file mode 100644
28 index 00000000000..48f10a2629b
29 --- /dev/null
30 +++ b/dev-php/pecl-imagick/pecl-imagick-3.5.0.ebuild
31 @@ -0,0 +1,26 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI="7"
36 +
37 +PHP_EXT_NAME="imagick"
38 +USE_PHP="php5-6 php7-1 php7-2 php7-3 php7-4 php8-0"
39 +
40 +inherit php-ext-pecl-r3
41 +
42 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
43 +
44 +DESCRIPTION="PHP wrapper for the ImageMagick library"
45 +HOMEPAGE="https://pecl.php.net/imagick https://github.com/mkoppanen/imagick"
46 +LICENSE="PHP-3.01"
47 +SLOT="0"
48 +IUSE="examples test"
49 +RESTRICT="!test? ( test )"
50 +
51 +# imagemagick[-openmp] is needed wrt bug 547922 and upstream
52 +# https://github.com/mkoppanen/imagick#openmp
53 +RDEPEND=">=media-gfx/imagemagick-6.2.4:=[-openmp]"
54 +DEPEND="${RDEPEND}
55 + test? ( >=media-gfx/imagemagick-6.2.4:=[jpeg,png,svg,truetype,xml] )"
56 +
57 +PHP_EXT_ECONF_ARGS="--with-imagick=${EPREFIX}/usr"