pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/graphics/gimp Changes 2.2.17:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f99240a58656
branches:  trunk
changeset: 530997:f99240a58656
user:      adam <adam%pkgsrc.org@localhost>
date:      Tue Jul 17 13:55:36 2007 +0000

description:
Changes 2.2.17:
- fixed regression in PSD load plug-in
- fixed crash when loading a corrupt PSD file
- work around for Pango appending " Not-Rotated" to font names

Changes 2.2.16:
- improved input value validation in several file plug-ins
- improved handling of corrupt or invalid XCF files
- guard against integer overflows in several file plug-ins
- fixed handling of background alpha channel in XCF files
- improved forward compatibility of the config parser
- fixed crash when previewing some animated brushes

diffstat:

 graphics/gimp/Makefile         |   5 ++---
 graphics/gimp/distinfo         |   9 ++++-----
 graphics/gimp/patches/patch-ae |  19 -------------------
 3 files changed, 6 insertions(+), 27 deletions(-)

diffs (53 lines):

diff -r e40a12162c79 -r f99240a58656 graphics/gimp/Makefile
--- a/graphics/gimp/Makefile    Tue Jul 17 12:30:09 2007 +0000
+++ b/graphics/gimp/Makefile    Tue Jul 17 13:55:36 2007 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.157 2007/07/04 13:34:35 lkundrak Exp $
+# $NetBSD: Makefile,v 1.158 2007/07/17 13:55:36 adam Exp $
 
-DISTNAME=      gimp-2.2.15
-PKGREVISION=   2
+DISTNAME=      gimp-2.2.17
 CATEGORIES=    graphics
 MASTER_SITES=  ftp://ftp.gimp.org/pub/gimp/v2.2/ \
                ftp://ftp.cs.umn.edu/pub/gimp/v2.2/ \
diff -r e40a12162c79 -r f99240a58656 graphics/gimp/distinfo
--- a/graphics/gimp/distinfo    Tue Jul 17 12:30:09 2007 +0000
+++ b/graphics/gimp/distinfo    Tue Jul 17 13:55:36 2007 +0000
@@ -1,9 +1,8 @@
-$NetBSD: distinfo,v 1.35 2007/07/04 13:34:35 lkundrak Exp $
+$NetBSD: distinfo,v 1.36 2007/07/17 13:55:37 adam Exp $
 
-SHA1 (gimp-2.2.15.tar.bz2) = ce2357139179e67f361e3ce1b1fb82d1dd5c08e4
-RMD160 (gimp-2.2.15.tar.bz2) = 322b5c07de9e6cc9b206d944278d58d8d6cd1e2f
-Size (gimp-2.2.15.tar.bz2) = 13097438 bytes
+SHA1 (gimp-2.2.17.tar.bz2) = e7bbfe5fd685f625f023af7f8fe5774feed26116
+RMD160 (gimp-2.2.17.tar.bz2) = 0272b20a59633eb057383e60d69abf668dd507d8
+Size (gimp-2.2.17.tar.bz2) = 13102077 bytes
 SHA1 (patch-aa) = 6a25d14a018e02d353e6f10364384e9df7a30ebd
 SHA1 (patch-ab) = 461467b76c45e53042da8e3aee4bb9f556730792
 SHA1 (patch-ad) = 632c34e0fbeda69139b2b674d9c5ef80db40dcca
-SHA1 (patch-ae) = 079b081e8eb0c19d18060d9c21ea9d12df9c5cc4
diff -r e40a12162c79 -r f99240a58656 graphics/gimp/patches/patch-ae
--- a/graphics/gimp/patches/patch-ae    Tue Jul 17 12:30:09 2007 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-$NetBSD: patch-ae,v 1.7 2007/07/04 13:34:35 lkundrak Exp $
-
-Fix for CVE-2007-2949 heap overflow from upstream.
-
---- plug-ins/common/psd.c.orig 2007-07-04 15:11:22.000000000 +0200
-+++ plug-ins/common/psd.c
-@@ -1202,6 +1202,12 @@ seek_to_and_unpack_pixeldata(FILE* fd, g
-   width = channel->width;
-   height = channel->height;
- 
-+  if (width > G_MAXINT16 || height > G_MAXINT16)
-+    {
-+      g_message ("Error: Invalid channel dimensions");
-+      gimp_quit ();
-+    }
-+
-   IFDBG
-     {
-       printf("\t\t\tLayer (%d) Channel (%d:%d) Compression: %d (%s)\n",



Home | Main Index | Thread Index | Old Index