Sun Dec 2 10:20:20 2018 UTC ()
ImageMagick: update to 7.0.8.14.

2018-10-23  7.0.8-14 Cristy  <quetzlzacatenango@image...>
  * Release ImageMagick version 7.0.8-14, GIT revision 14943:1a0da3dd0:20181023

2018-10-21  7.0.8-13 Cristy  <quetzlzacatenango@image...>
  * Release ImageMagick version 7.0.8-13, GIT revision 14936:d3ec5abe2:20181021.

2018-10-04  7.0.8-13 Dirk Lemstra <dirk@lem.....org>
  * Adding coder headers with magic.xml will no longer be supported.
  * Adding coder aliases with coder.xml will no longer be supported.

2018-09-16  7.0.8-12 Cristy  <quetzlzacatenango@image...>
  * Release ImageMagick version 7.0.8-12, GIT revision 14843:cb5cf1959:20180923

2018-09-15  7.0.8-12 Dirk Lemstra <dirk@lem.....org>
  * Added support for arithmetic coding to the jpeg encoder:
    -define jpeg:arithmetic-coding=true.

2018-09-08  7.0.8-12 Cristy  <quetzlzacatenango@image...>
  * Fixed numerous use of uninitialized values, integer overflow, memory
    exceeded, and timeouts (credit to OSS Fuzz).


(wiz)
diff -r1.251 -r1.252 pkgsrc/graphics/ImageMagick/Makefile
diff -r1.176 -r1.177 pkgsrc/graphics/ImageMagick/Makefile.common
diff -r1.103 -r1.104 pkgsrc/graphics/ImageMagick/PLIST
diff -r1.193 -r1.194 pkgsrc/graphics/ImageMagick/distinfo

cvs diff -r1.251 -r1.252 pkgsrc/graphics/ImageMagick/Makefile (expand / switch to unified diff)

--- pkgsrc/graphics/ImageMagick/Makefile 2018/11/14 22:21:34 1.251
+++ pkgsrc/graphics/ImageMagick/Makefile 2018/12/02 10:20:20 1.252
@@ -1,16 +1,15 @@ @@ -1,16 +1,15 @@
1# $NetBSD: Makefile,v 1.251 2018/11/14 22:21:34 kleink Exp $ 1# $NetBSD: Makefile,v 1.252 2018/12/02 10:20:20 wiz Exp $
2 2
3PKGREVISION= 2 
4.include "Makefile.common" 3.include "Makefile.common"
5 4
6PKGNAME= ImageMagick-${DISTVERSION} 5PKGNAME= ImageMagick-${DISTVERSION}
7 6
8MAINTAINER= adam@NetBSD.org 7MAINTAINER= adam@NetBSD.org
9COMMENT= Package for display and interactive manipulation of images 8COMMENT= Package for display and interactive manipulation of images
10 9
11CONFLICTS= geomview<1.8.1nb2 # used to have a program named 'animate' 10CONFLICTS= geomview<1.8.1nb2 # used to have a program named 'animate'
12 11
13USE_LANGUAGES= c c++ c99 12USE_LANGUAGES= c c++ c99
14USE_TOOLS+= gmake pkg-config:run 13USE_TOOLS+= gmake pkg-config:run
15CONFIGURE_ARGS+= --disable-assert 14CONFIGURE_ARGS+= --disable-assert
16CONFIGURE_ARGS+= --with-fontconfig 15CONFIGURE_ARGS+= --with-fontconfig
@@ -36,31 +35,29 @@ TEST_TARGET= check @@ -36,31 +35,29 @@ TEST_TARGET= check
36.include "options.mk" 35.include "options.mk"
37 36
38.if !empty(MACHINE_PLATFORM:MNetBSD-*-sparc64) 37.if !empty(MACHINE_PLATFORM:MNetBSD-*-sparc64)
39GCC_REQD+= 3.0 38GCC_REQD+= 3.0
40.endif 39.endif
41 40
42# Avoid compiler bug on "mipsel" (cobalt?) 41# Avoid compiler bug on "mipsel" (cobalt?)
43.if ${MACHINE_ARCH} == "mipsel" 42.if ${MACHINE_ARCH} == "mipsel"
44CFLAGS+= -O 43CFLAGS+= -O
45.endif 44.endif
46 45
47PKG_SYSCONFSUBDIR= ImageMagick-${IM_MAJOR_LIB_VER} 46PKG_SYSCONFSUBDIR= ImageMagick-${IM_MAJOR_LIB_VER}
48EGDIR= ${PREFIX}/share/examples/ImageMagick 47EGDIR= ${PREFIX}/share/examples/ImageMagick
49CONF_FILES= ${EGDIR}/coder.xml ${PKG_SYSCONFDIR}/coder.xml 
50CONF_FILES+= ${EGDIR}/colors.xml ${PKG_SYSCONFDIR}/colors.xml 48CONF_FILES+= ${EGDIR}/colors.xml ${PKG_SYSCONFDIR}/colors.xml
51CONF_FILES+= ${EGDIR}/delegates.xml ${PKG_SYSCONFDIR}/delegates.xml 49CONF_FILES+= ${EGDIR}/delegates.xml ${PKG_SYSCONFDIR}/delegates.xml
52CONF_FILES+= ${EGDIR}/log.xml ${PKG_SYSCONFDIR}/log.xml 50CONF_FILES+= ${EGDIR}/log.xml ${PKG_SYSCONFDIR}/log.xml
53CONF_FILES+= ${EGDIR}/magic.xml ${PKG_SYSCONFDIR}/magic.xml 
54CONF_FILES+= ${EGDIR}/mime.xml ${PKG_SYSCONFDIR}/mime.xml 51CONF_FILES+= ${EGDIR}/mime.xml ${PKG_SYSCONFDIR}/mime.xml
55CONF_FILES+= ${EGDIR}/policy.xml ${PKG_SYSCONFDIR}/policy.xml 52CONF_FILES+= ${EGDIR}/policy.xml ${PKG_SYSCONFDIR}/policy.xml
56CONF_FILES+= ${EGDIR}/thresholds.xml ${PKG_SYSCONFDIR}/thresholds.xml 53CONF_FILES+= ${EGDIR}/thresholds.xml ${PKG_SYSCONFDIR}/thresholds.xml
57CONF_FILES+= ${EGDIR}/type-dejavu.xml ${PKG_SYSCONFDIR}/type-dejavu.xml 54CONF_FILES+= ${EGDIR}/type-dejavu.xml ${PKG_SYSCONFDIR}/type-dejavu.xml
58CONF_FILES+= ${EGDIR}/type-ghostscript.xml ${PKG_SYSCONFDIR}/type-ghostscript.xml 55CONF_FILES+= ${EGDIR}/type-ghostscript.xml ${PKG_SYSCONFDIR}/type-ghostscript.xml
59CONF_FILES+= ${EGDIR}/type-windows.xml ${PKG_SYSCONFDIR}/type-windows.xml 56CONF_FILES+= ${EGDIR}/type-windows.xml ${PKG_SYSCONFDIR}/type-windows.xml
60CONF_FILES+= ${EGDIR}/type.xml ${PKG_SYSCONFDIR}/type.xml 57CONF_FILES+= ${EGDIR}/type.xml ${PKG_SYSCONFDIR}/type.xml
61 58
62SUBST_CLASSES+= fix-cfg 59SUBST_CLASSES+= fix-cfg
63SUBST_STAGE.fix-cfg= pre-configure 60SUBST_STAGE.fix-cfg= pre-configure
64SUBST_MESSAGE.fix-cfg= Fixing configure.xml. 61SUBST_MESSAGE.fix-cfg= Fixing configure.xml.
65SUBST_FILES.fix-cfg= config/configure.xml.in 62SUBST_FILES.fix-cfg= config/configure.xml.in
66SUBST_VARS.fix-cfg= CONFIGURE_ARGS 63SUBST_VARS.fix-cfg= CONFIGURE_ARGS

cvs diff -r1.176 -r1.177 pkgsrc/graphics/ImageMagick/Makefile.common (expand / switch to unified diff)

--- pkgsrc/graphics/ImageMagick/Makefile.common 2018/09/03 10:37:10 1.176
+++ pkgsrc/graphics/ImageMagick/Makefile.common 2018/12/02 10:20:20 1.177
@@ -1,23 +1,23 @@ @@ -1,23 +1,23 @@
1# $NetBSD: Makefile.common,v 1.176 2018/09/03 10:37:10 wiz Exp $ 1# $NetBSD: Makefile.common,v 1.177 2018/12/02 10:20:20 wiz Exp $
2# 2#
3# When updating this package, please upload the distfile 3# When updating this package, please upload the distfile
4# since they disappear immediately when new releases happen, 4# since they disappear immediately when new releases happen,
5# which is quite often. 5# which is quite often.
6# 6#
7# used by graphics/p5-PerlMagick/Makefile 7# used by graphics/p5-PerlMagick/Makefile
8 8
9IM_MAJOR_VER= 7.0.8 9IM_MAJOR_VER= 7.0.8
10IM_MINOR_VER= 11 10IM_MINOR_VER= 14
11IM_MAJOR_LIB_VER= 7 11IM_MAJOR_LIB_VER= 7
12 12
13.if (${IM_MINOR_VER} != NONE) 13.if (${IM_MINOR_VER} != NONE)
14DISTSUFFIX= ${IM_MAJOR_VER}-${IM_MINOR_VER} 14DISTSUFFIX= ${IM_MAJOR_VER}-${IM_MINOR_VER}
15.else 15.else
16DISTSUFFIX= ${IM_MAJOR_VER} 16DISTSUFFIX= ${IM_MAJOR_VER}
17.endif 17.endif
18 18
19DISTNAME= ImageMagick-${DISTSUFFIX} 19DISTNAME= ImageMagick-${DISTSUFFIX}
20DISTVERSION= ${DISTSUFFIX:S/-/./} 20DISTVERSION= ${DISTSUFFIX:S/-/./}
21 21
22# 22#
23# Please always run `upload-distfiles' after every update! 23# Please always run `upload-distfiles' after every update!

cvs diff -r1.103 -r1.104 pkgsrc/graphics/ImageMagick/PLIST (expand / switch to unified diff)

--- pkgsrc/graphics/ImageMagick/PLIST 2018/06/17 09:03:01 1.103
+++ pkgsrc/graphics/ImageMagick/PLIST 2018/12/02 10:20:20 1.104
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.103 2018/06/17 09:03:01 wiz Exp $ 1@comment $NetBSD: PLIST,v 1.104 2018/12/02 10:20:20 wiz Exp $
2bin/Magick++-config 2bin/Magick++-config
3bin/MagickCore-config 3bin/MagickCore-config
4bin/MagickWand-config 4bin/MagickWand-config
5bin/animate 5bin/animate
6bin/compare 6bin/compare
7bin/composite 7bin/composite
8bin/conjure 8bin/conjure
9bin/convert 9bin/convert
10bin/display 10bin/display
11bin/identify 11bin/identify
12bin/import 12bin/import
13bin/magick 13bin/magick
14bin/magick-script 14bin/magick-script
@@ -1241,32 +1241,29 @@ share/doc/ImageMagick-7/www/source/mime. @@ -1241,32 +1241,29 @@ share/doc/ImageMagick-7/www/source/mime.
1241share/doc/ImageMagick-7/www/source/piechart.mvg 1241share/doc/ImageMagick-7/www/source/piechart.mvg
1242share/doc/ImageMagick-7/www/source/piechart.svg 1242share/doc/ImageMagick-7/www/source/piechart.svg
1243share/doc/ImageMagick-7/www/source/policy.xml 1243share/doc/ImageMagick-7/www/source/policy.xml
1244share/doc/ImageMagick-7/www/source/quantization-table.xml 1244share/doc/ImageMagick-7/www/source/quantization-table.xml
1245share/doc/ImageMagick-7/www/source/thresholds.xml 1245share/doc/ImageMagick-7/www/source/thresholds.xml
1246share/doc/ImageMagick-7/www/source/type-apple.xml 1246share/doc/ImageMagick-7/www/source/type-apple.xml
1247share/doc/ImageMagick-7/www/source/type-dejavu.xml 1247share/doc/ImageMagick-7/www/source/type-dejavu.xml
1248share/doc/ImageMagick-7/www/source/type-ghostscript.xml 1248share/doc/ImageMagick-7/www/source/type-ghostscript.xml
1249share/doc/ImageMagick-7/www/source/type-urw-base35.xml 1249share/doc/ImageMagick-7/www/source/type-urw-base35.xml
1250share/doc/ImageMagick-7/www/source/type-windows.xml 1250share/doc/ImageMagick-7/www/source/type-windows.xml
1251share/doc/ImageMagick-7/www/source/type.xml 1251share/doc/ImageMagick-7/www/source/type.xml
1252share/doc/ImageMagick-7/www/source/wand.c 1252share/doc/ImageMagick-7/www/source/wand.c
1253share/doc/ImageMagick-7/www/stream.html 1253share/doc/ImageMagick-7/www/stream.html
1254share/doc/ImageMagick-7/www/subversion.html 
1255share/doc/ImageMagick-7/www/support.html 1254share/doc/ImageMagick-7/www/support.html
1256share/doc/ImageMagick-7/www/wand.png 1255share/doc/ImageMagick-7/www/wand.png
1257share/doc/ImageMagick-7/www/webp.html 1256share/doc/ImageMagick-7/www/webp.html
1258share/examples/ImageMagick/coder.xml 
1259share/examples/ImageMagick/colors.xml 1257share/examples/ImageMagick/colors.xml
1260share/examples/ImageMagick/delegates.xml 1258share/examples/ImageMagick/delegates.xml
1261share/examples/ImageMagick/log.xml 1259share/examples/ImageMagick/log.xml
1262share/examples/ImageMagick/magic.xml 
1263share/examples/ImageMagick/mime.xml 1260share/examples/ImageMagick/mime.xml
1264share/examples/ImageMagick/policy.xml 1261share/examples/ImageMagick/policy.xml
1265share/examples/ImageMagick/quantization-table.xml 1262share/examples/ImageMagick/quantization-table.xml
1266share/examples/ImageMagick/thresholds.xml 1263share/examples/ImageMagick/thresholds.xml
1267share/examples/ImageMagick/type-apple.xml 1264share/examples/ImageMagick/type-apple.xml
1268share/examples/ImageMagick/type-dejavu.xml 1265share/examples/ImageMagick/type-dejavu.xml
1269share/examples/ImageMagick/type-ghostscript.xml 1266share/examples/ImageMagick/type-ghostscript.xml
1270share/examples/ImageMagick/type-urw-base35.xml 1267share/examples/ImageMagick/type-urw-base35.xml
1271share/examples/ImageMagick/type-windows.xml 1268share/examples/ImageMagick/type-windows.xml
1272share/examples/ImageMagick/type.xml 1269share/examples/ImageMagick/type.xml

cvs diff -r1.193 -r1.194 pkgsrc/graphics/ImageMagick/distinfo (expand / switch to unified diff)

--- pkgsrc/graphics/ImageMagick/distinfo 2018/09/03 10:37:10 1.193
+++ pkgsrc/graphics/ImageMagick/distinfo 2018/12/02 10:20:20 1.194
@@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
1$NetBSD: distinfo,v 1.193 2018/09/03 10:37:10 wiz Exp $ 1$NetBSD: distinfo,v 1.194 2018/12/02 10:20:20 wiz Exp $
2 2
3SHA1 (ImageMagick-7.0.8-11.tar.xz) = 1e62fde95d32afaaff150e0227733797721ce2ba 3SHA1 (ImageMagick-7.0.8-14.tar.xz) = d2e3dcb51c4ecc40c06f52669d38516655308f7b
4RMD160 (ImageMagick-7.0.8-11.tar.xz) = 9264fb51eae273ef8295a2cfee8352f8cd835ad9 4RMD160 (ImageMagick-7.0.8-14.tar.xz) = 69499a7773a2cf1a5c0a9cf623bd17fcc6c138d8
5SHA512 (ImageMagick-7.0.8-11.tar.xz) = b6f7493095097d3c551c70acd2181fb8e252750916534602646c7c765d756b5483c1bdd08b00d59f8b0bc3963729a2b64bf8cb467e3f23e26a4d35515b6d3b18 5SHA512 (ImageMagick-7.0.8-14.tar.xz) = 0a5f3357f4ce5b245d60b178d81b58c3483effb45b669791d4686514a8c3b0ad04244e31caf0a4a614e73e3e071c17d851992670917ebcf2761c977d77c58dd6
6Size (ImageMagick-7.0.8-11.tar.xz) = 8638236 bytes 6Size (ImageMagick-7.0.8-14.tar.xz) = 8634400 bytes
7SHA1 (patch-config_policy.xml) = 2c446a00fc00f85ab33eae0691d4d8989a46289f 7SHA1 (patch-config_policy.xml) = 2c446a00fc00f85ab33eae0691d4d8989a46289f