From 371799355bd9586fda5450b53787e5146213e505 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 4 Dec 2017 09:04:45 +0100 Subject: update to version 6.9.9 patch level 25 --- 4674b9a584fcb9ca5151c2c8b9104b5877a81d0c.patch | 67 -------------------------- ImageMagick6.spec | 10 ++-- 2 files changed, 5 insertions(+), 72 deletions(-) delete mode 100644 4674b9a584fcb9ca5151c2c8b9104b5877a81d0c.patch diff --git a/4674b9a584fcb9ca5151c2c8b9104b5877a81d0c.patch b/4674b9a584fcb9ca5151c2c8b9104b5877a81d0c.patch deleted file mode 100644 index 3bf4a3c..0000000 --- a/4674b9a584fcb9ca5151c2c8b9104b5877a81d0c.patch +++ /dev/null @@ -1,67 +0,0 @@ -From 4674b9a584fcb9ca5151c2c8b9104b5877a81d0c Mon Sep 17 00:00:00 2001 -From: Cristy -Date: Thu, 30 Nov 2017 09:22:48 -0500 -Subject: [PATCH] https://github.com/ImageMagick/ImageMagick/issues/888 - ---- - coders/dng.c | 12 +++++++----- - 1 file changed, 7 insertions(+), 5 deletions(-) - -diff --git a/coders/dng.c b/coders/dng.c -index 069104dee9..17791019e0 100644 ---- a/coders/dng.c -+++ b/coders/dng.c -@@ -161,25 +161,24 @@ static void SetDNGProperties(Image *image,const libraw_data_t *raw_info) - - (void) SetImageProperty(image,"dng:make",raw_info->idata.make); - (void) SetImageProperty(image,"dng:camera.model.name",raw_info->idata.model); -- (void) SetImageProperty(image,"dng:software",raw_info->idata.software); - (void) FormatMagickTime(raw_info->other.timestamp,MagickPathExtent,timestamp); - (void) SetImageProperty(image,"dng:create.date",timestamp); -+ (void) SetImageProperty(image,"dng:f.number",property); -+ (void) FormatLocaleString(property,MagickPathExtent,"%0.1f", -+ raw_info->other.iso_speed); - #if LIBRAW_COMPILE_CHECK_VERSION_NOTLESS(0,18) -+ (void) SetImageProperty(image,"dng:software",raw_info->idata.software); - if (*raw_info->shootinginfo.BodySerial != '\0') - (void) SetImageProperty(image,"dng:serial.number", - raw_info->shootinginfo.BodySerial); - (void) FormatLocaleString(property,MagickPathExtent,"%0.2f", - raw_info->other.FlashEC); - (void) SetImageProperty(image,"dng:flash.exposure.compensation",property); --#endif - (void) FormatLocaleString(property,MagickPathExtent,"1/%0.1f", - 1.0/raw_info->other.shutter); - (void) SetImageProperty(image,"dng:exposure.time",property); - (void) FormatLocaleString(property,MagickPathExtent,"%0.1f", - raw_info->other.aperture); -- (void) SetImageProperty(image,"dng:f.number",property); -- (void) FormatLocaleString(property,MagickPathExtent,"%0.1f", -- raw_info->other.iso_speed); - (void) SetImageProperty(image,"dng:iso.setting",property); - (void) FormatLocaleString(property,MagickPathExtent,"%0.1f", - raw_info->lens.EXIF_MaxAp); -@@ -212,6 +211,7 @@ static void SetDNGProperties(Image *image,const libraw_data_t *raw_info) - (void) FormatLocaleString(property,MagickPathExtent,"%d mm", - raw_info->lens.FocalLengthIn35mmFormat); - (void) SetImageProperty(image,"dng:focal.length.in.35mm.format",property); -+#endif - } - #endif - -@@ -382,6 +382,7 @@ static Image *ReadDNGImage(const ImageInfo *image_info,ExceptionInfo *exception) - profile=DestroyStringInfo(profile); - } - } -+#if LIBRAW_COMPILE_CHECK_VERSION_NOTLESS(0,18) - if (raw_info->idata.xmpdata) - { - profile=BlobToStringInfo(raw_info->idata.xmpdata, -@@ -392,6 +393,7 @@ static Image *ReadDNGImage(const ImageInfo *image_info,ExceptionInfo *exception) - profile=DestroyStringInfo(profile); - } - } -+#endif - SetDNGProperties(image,raw_info); - libraw_close(raw_info); - return(image); diff --git a/ImageMagick6.spec b/ImageMagick6.spec index b9ab03c..cd81d29 100644 --- a/ImageMagick6.spec +++ b/ImageMagick6.spec @@ -9,7 +9,7 @@ # Please preserve changelog entries # %global VER 6.9.9 -%global Patchlevel 24 +%global Patchlevel 25 %global incsuffixe -6 %global libsuffixe -6.Q16 %global with_tests 0%{!?_without_tests:1} @@ -73,15 +73,13 @@ Name: %{libname} Name: %{libname}6 %endif Version: %{VER}.%{Patchlevel} -Release: 2%{?dist} +Release: 1%{?dist} Summary: An X application for displaying and manipulating images Group: Applications/Multimedia License: ImageMagick Url: http://www.imagemagick.org/ Source0: ftp://ftp.ImageMagick.org/pub/ImageMagick/ImageMagick-%{VER}-%{Patchlevel}.tar.xz -Patch0: https://github.com/ImageMagick/ImageMagick/commit/4674b9a584fcb9ca5151c2c8b9104b5877a81d0c.patch - BuildRequires: bzip2-devel, freetype-devel, libjpeg-devel, libpng-devel BuildRequires: libtiff-devel, giflib-devel, zlib-devel %if 0%{?fedora} >= 7 || 0%{?rhel} >= 6 @@ -331,7 +329,6 @@ however. %prep %setup -q -n %{libname}-%{VER}-%{Patchlevel} -%patch0 -p1 -b.upstream # for %%doc mkdir Magick++/examples @@ -574,6 +571,9 @@ fi %changelog +* Mon Dec 4 2017 Remi Collet - 6.9.9.25-1 +- update to version 6.9.9 patch level 25 + * Thu Nov 30 2017 Remi Collet - 6.9.9.24-2 - add upstream patch for #888 -- cgit