Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 8CC497A20D for ; Thu, 27 Apr 2017 12:40:02 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 3A42784DBF; Thu, 27 Apr 2017 12:40:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BF9B084D8C for ; Thu, 27 Apr 2017 12:40:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id Mibs5FRRvGMe for ; Thu, 27 Apr 2017 12:40:01 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 11E8B84CE2 for ; Thu, 27 Apr 2017 12:40:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0D5F2FBE4; Thu, 27 Apr 2017 12:40:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_14932968019750" MIME-Version: 1.0 Date: Thu, 27 Apr 2017 12:40:01 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/graphics/p5-GD To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20170427124001.0D5F2FBE4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_14932968019750 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Apr 27 12:40:00 UTC 2017 Modified Files: pkgsrc/graphics/p5-GD: Makefile distinfo Log Message: Updated p5-GD to 2.66. 2.66 * throw proper error on newFrom* with not-existing file * add t/transp.t from RT #40525 * Improve RT #54366 multiple gd.h warning * better doc for GD::Simple->arc * fix ANIMGIF with libgd 2.3.0-dev 2.65 * fix --gdlib_config_path to accept an argument (fperrad) 2.64 * Update doc for LIBGD_VERSION() * Fix 5.6.2, which does not have float in its typemap 2.63 * renamed VERSION() to LIBGD_VERSION(), RT #121307. It was treated magically by "use GD 2.18" 2.62 * fixed wrong <5.14 code generated with ExtUtils::Constants RT #121297. Don't generate const-xs.inc, only when missing. * add -liconv on hpux also (our pkgconfig parser cannot handle it) 2.61 * add CONFIGURE_REQUIRES META * add --gdlib_config_path * add Image Filters: scatter, pixelate, negate, grayscale, brightness, contrast, color, selectiveBlur, edgeDetectQuick, gaussianBlur, emboss, meanRemoval, smooth, copyGaussianBlurred * add palette methods: createPaletteFromTrueColor, neuQuant (but discouraged), colorMatch. * add interpolation methods: copyScale, copyRotateInterpolated, interpolationMethod. * add double GD::VERSION * add all gd.h constants 2.60 * add missing methods newFromWBMP, newFromXbm, (RT #68784) and some missing docs * Add --lib_fontconfig_path, --fcgi options * rewrote most of the XS code * cleanup Makefile.PL #20 2.59 * error on failing libgd calls * fix colorClosestAlpha, colorAllocateAlpha * add missing documentation 2.58 * fix VERSION_STRING for 2.0.x * honor --lib_gd_path specific gdlib-config * Loosen the comparison tests with GDIMAGETYPE ne gd2 * Improve gdlib-config parsing (PR #17), esp. with 2.0.34 2.57 * fix Jpeg magic number detection RT #26146 * fix RGB - HSV roundtrips: RT #120572 by J2N-FORGET * fix -print-search-dirs errors RT #106265 * co-maint to rurban * add hv_fetchs, CI smokers * add GD::VERSION_STRING api 2.56_03 * add alpha method * improve option handling * fix meta data 2.56_02 * fix feature extraction >= 2.2 [RT #119459] 2.56_01 * rm Build.PL, fix permissions, fix for missing gdlib-config To generate a diff of this commit: cvs rdiff -u -r1.75 -r1.76 pkgsrc/graphics/p5-GD/Makefile cvs rdiff -u -r1.23 -r1.24 pkgsrc/graphics/p5-GD/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_14932968019750 Content-Disposition: inline Content-Length: 2110 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/p5-GD/Makefile diff -u pkgsrc/graphics/p5-GD/Makefile:1.75 pkgsrc/graphics/p5-GD/Makefile:1.76 --- pkgsrc/graphics/p5-GD/Makefile:1.75 Tue Feb 28 15:20:06 2017 +++ pkgsrc/graphics/p5-GD/Makefile Thu Apr 27 12:40:00 2017 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.75 2017/02/28 15:20:06 ryoon Exp $ +# $NetBSD: Makefile,v 1.76 2017/04/27 12:40:00 wiz Exp $ -DISTNAME= GD-2.56 +DISTNAME= GD-2.66 PKGNAME= p5-${DISTNAME} -PKGREVISION= 4 CATEGORIES= graphics perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=GD/} @@ -17,7 +16,6 @@ USE_LANGUAGES= c # package, and should be harmless on other platforms. See PR 45873. CFLAGS+= -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -PERL5_MODULE_TYPE= Module::Build PERL5_PACKLIST= auto/GD/.packlist PERL5_OPTIONS+= threads @@ -25,7 +23,7 @@ PERL5_OPTIONS+= threads MAKE_PARAMS+= -- post-extract: - chmod a+w ${WRKSRC}/bdf_scripts/bdf2gdfont.pl + chmod a+w ${WRKSRC}/bdf_scripts/bdf2gdfont_pl.PL .include "../../converters/libiconv/buildlink3.mk" BUILDLINK_API_DEPENDS.gd+= gd>=2.0.28 Index: pkgsrc/graphics/p5-GD/distinfo diff -u pkgsrc/graphics/p5-GD/distinfo:1.23 pkgsrc/graphics/p5-GD/distinfo:1.24 --- pkgsrc/graphics/p5-GD/distinfo:1.23 Tue Nov 3 21:34:12 2015 +++ pkgsrc/graphics/p5-GD/distinfo Thu Apr 27 12:40:00 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.23 2015/11/03 21:34:12 agc Exp $ +$NetBSD: distinfo,v 1.24 2017/04/27 12:40:00 wiz Exp $ -SHA1 (GD-2.56.tar.gz) = 43bbd4896cb4e2071f5ac467455bc55910269603 -RMD160 (GD-2.56.tar.gz) = b4e33640fad5d97e63f833270d32e29c843380cd -SHA512 (GD-2.56.tar.gz) = 51c4b46b199625a12ae1ad1003cafe4e66913d1e0c0b51d9bccbc7c14a86dfe29144caefbeca2927a66a44d4ba8b134550ee4a63eb86aceaa13513c46a4e71f4 -Size (GD-2.56.tar.gz) = 273441 bytes +SHA1 (GD-2.66.tar.gz) = e04af9fe5f7008f39a01833e27be12d782e43abb +RMD160 (GD-2.66.tar.gz) = 4a2ea16f8d0de7f5decb07df14100cee6c27a829 +SHA512 (GD-2.66.tar.gz) = 37d3da70f4e0b89b0166488a1f8a48c508ff5e515653fe1b10602cb708ae0ce713c617dcae21c48ec795799fb0e061762696e6a65bb8ba359859223d15677c61 +Size (GD-2.66.tar.gz) = 253000 bytes --_----------=_14932968019750--