forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-php/pecl-imagick: Version bump for 3.7.0
Signed-off-by: Brian Evans <[email protected]>
- Loading branch information
Brian Evans
committed
Jan 20, 2022
1 parent
bd2b163
commit cced1e3
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST imagick-3.5.1.tgz 301411 BLAKE2B 551c8a0aa07b18938fce3e39ee503ed053efb261fab712d1c1ba2fb941a911307b8d9e88257dddde19dfa77886688b5b704eb7e1cd65bba734e10b5391661374 SHA512 b922c4fad994a4bf26f4d92b6e81bb761bd8d4d1b52f4b7099cf944cdaed4e44d0318beccfb2cf3bee2605ce33b0ad764d9e3d2ba99c9a6f624ca569a4ac73ad | ||
DIST imagick-3.6.0.tgz 351361 BLAKE2B 9e62332e93e380d362f9eb9cba108f7fa7a4442ac7d87a367e6a5dc3bfef253aa83168131def9bd5c84fc85a8f6088cf77e9db5b5270d84d0908b102aa6a971a SHA512 ea5ae1fe35cd90fb83cf4b752675b75716e79973f3f24ae2bcf2723528f3ef7137363e6537d386d20bdfaad42065d5de04410701bd04f412ca6d36e31b9f15d4 | ||
DIST imagick-3.7.0.tgz 360138 BLAKE2B 2c149f2ec771df92789d67e88c6f7180d3da7c9182561432bdd4e0a83f96982cc8fc95bc1a003e05e37a54fabe6ab0fe693a6b9208d2e481d36e6c334aeee023 SHA512 c84408e4e4a0c46d979240e06d58d264c6bb21f3b95e3d434c8a21cd808f6c495fd453ef9c07b5c44dac81c6f205b6697f8ecaf1a65a86ce4e9052328a389ebe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright 1999-2022 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI="7" | ||
|
||
PHP_EXT_NAME="imagick" | ||
USE_PHP="php7-3 php7-4 php8-0 php8-1" | ||
|
||
inherit php-ext-pecl-r3 | ||
|
||
KEYWORDS="~amd64 ~arm ~arm64 ~x86" | ||
|
||
DESCRIPTION="PHP wrapper for the ImageMagick library" | ||
HOMEPAGE="https://pecl.php.net/package/imagick https://github.com/Imagick/imagick" | ||
LICENSE="PHP-3.01" | ||
SLOT="0" | ||
IUSE="examples test" | ||
RESTRICT="!test? ( test )" | ||
|
||
# imagemagick[-openmp] is needed wrt bug 547922 and upstream | ||
# https://github.com/Imagick/imagick#openmp | ||
RDEPEND=">=media-gfx/imagemagick-6.2.4:=[-openmp]" | ||
DEPEND="${RDEPEND} | ||
test? ( >=media-gfx/imagemagick-6.2.4:=[hdri,jpeg,png,svg,truetype,xml] )" | ||
|
||
PHP_EXT_ECONF_ARGS="--with-imagick=${EPREFIX}/usr" | ||
|
||
src_install() { | ||
php-ext-pecl-r3_src_install | ||
|
||
php-ext-source-r3_addtoinifiles "imagick.skip_version_check" "1" | ||
} |