Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 142E01A9239 for ; Sun, 12 Dec 2021 15:14:20 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 203F484EC2; Sun, 12 Dec 2021 15:14:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5A38D84E82 for ; Sun, 12 Dec 2021 15:14:18 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id m9SwZ9SaUZYA for ; Sun, 12 Dec 2021 15:14:17 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 75F1184D36 for ; Sun, 12 Dec 2021 15:14:17 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 62D75FAEC; Sun, 12 Dec 2021 15:14:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163932205755960" MIME-Version: 1.0 Date: Sun, 12 Dec 2021 15:14:17 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/graphics/php-imagick To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20211212151417.62D75FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163932205755960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Dec 12 15:14:17 UTC 2021 Modified Files: pkgsrc/graphics/php-imagick: Makefile distinfo Log Message: graphics/php-imagick: update to 3.6.0 3.6.0RC1 (2021-11-10) - Imagick::getImageInterlaceScheme is undeprecated. It's the appropriate function to call to get the image interlace setting. - Image formats are now normalised to lower case. - Imagick::getImageIndex and Imagick::setImageIndex are undeprecated and work on ImageMagick 7. They call MagickGetIteratorIndex and MagickSetIteratorIndex internally. - Imagick::averageImages is undeprecated. For IM 7 it now calls EvaluateImages(wand->images,MeanEvaluateOperator). - Imagick::flattenImages is undeprecated. For IM 7 it now calls MagickMergeImageLayers(intern->magick_wand, FlattenLayer); internally. - Imagick::getImageSize is undeprecated. For IM 7 it now calls MagickGetImageLength internally. - Imagick::roundCornersImage is undeprecated and available on IM7. - Fixes: * Imagick::borderImage() changed internally to use OverCompositeOp rather than AtopCompositeOp for ImageMagick > 7. If you need the old behaviour, please use Imagick::borderImageWithComposite() instead, which allows you to set the composite method. * Imagick::frameImage() changed internally to use OverCompositeOp rather than AtopCompositeOp for ImageMagick > 7. If you need the old behaviour, please use Imagick::frameImageWithComposite() instead, which allows you to set the composite method. * Imagick::profileImage() fixed to allow null as second paramter again. If you can't upgrade to this version yet, pass in "", which has the same effect. * Imagick::ALPHACHANNEL_COPY and Imagick::ALPHACHANNEL_OPAQUE should be available on IM7. * Imagick::setImageMatteColor() should be available on IM7. - Added: * Imagick::borderImageWithComposite() same as Imagick::borderImage() but allows user to set composite operator used. * Imagick::frameImageWithComposite() same as Imagick::frameImage() but allows user to set composite operator used. * function Imagick::cannyEdgeImage * function Imagick::setSeed * function Imagick::waveletDenoiseImage * function Imagick::meanShiftImage * function Imagick::kmeansImage * function Imagick::rangeThresholdImage * function Imagick::autoThresholdImage * function Imagick::bilateralBlurImage * function Imagick::claheImage * function Imagick::channelFxImage * function Imagick::colorThresholdImage * function Imagick::complexImages * function Imagick::interpolativeResizeImage * function Imagick::levelImageColors * function Imagick::levelizeImage * function Imagick::orderedDitherImage * function Imagick::whiteBalanceImage 3.6.0RC2 (2021-11-11) - Fixes: * Remove deprecated message from Imagick::roundCorners() - Added: * Imagick::addNoiseImageWithAttenuate() 3.6.0 (2021-11-17) - No change from 3.6.0RC2 To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 pkgsrc/graphics/php-imagick/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/graphics/php-imagick/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163932205755960 Content-Disposition: inline Content-Length: 1618 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/php-imagick/Makefile diff -u pkgsrc/graphics/php-imagick/Makefile:1.37 pkgsrc/graphics/php-imagick/Makefile:1.38 --- pkgsrc/graphics/php-imagick/Makefile:1.37 Wed Dec 8 16:05:03 2021 +++ pkgsrc/graphics/php-imagick/Makefile Sun Dec 12 15:14:17 2021 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.37 2021/12/08 16:05:03 adam Exp $ +# $NetBSD: Makefile,v 1.38 2021/12/12 15:14:17 taca Exp $ MODNAME= imagick -PECL_VERSION= 3.5.1 +PECL_VERSION= 3.6.0 CATEGORIES+= graphics MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/graphics/php-imagick/distinfo diff -u pkgsrc/graphics/php-imagick/distinfo:1.8 pkgsrc/graphics/php-imagick/distinfo:1.9 --- pkgsrc/graphics/php-imagick/distinfo:1.8 Tue Oct 26 10:46:40 2021 +++ pkgsrc/graphics/php-imagick/distinfo Sun Dec 12 15:14:17 2021 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.8 2021/10/26 10:46:40 nia Exp $ +$NetBSD: distinfo,v 1.9 2021/12/12 15:14:17 taca Exp $ -BLAKE2s (php-imagick/imagick-3.5.1.tgz) = aff68eab1995e0257fec770a9459924268bda930c4aceeb278e58e9782830d17 -SHA512 (php-imagick/imagick-3.5.1.tgz) = b922c4fad994a4bf26f4d92b6e81bb761bd8d4d1b52f4b7099cf944cdaed4e44d0318beccfb2cf3bee2605ce33b0ad764d9e3d2ba99c9a6f624ca569a4ac73ad -Size (php-imagick/imagick-3.5.1.tgz) = 301411 bytes +BLAKE2s (php-imagick/imagick-3.6.0.tgz) = f8e40316c93237876cea193d58675795a8ee5a670c3d88ced21f0f5a99bff1d2 +SHA512 (php-imagick/imagick-3.6.0.tgz) = ea5ae1fe35cd90fb83cf4b752675b75716e79973f3f24ae2bcf2723528f3ef7137363e6537d386d20bdfaad42065d5de04410701bd04f412ca6d36e31b9f15d4 +Size (php-imagick/imagick-3.6.0.tgz) = 351361 bytes --_----------=_163932205755960--